{ "cells": [ { "cell_type": "code", "execution_count": 2, "metadata": { "collapsed": false }, "outputs": [], "source": [ "import numpy as np\n", "import scipy as sp\n", "import pandas as pd\n", "import matplotlib.pyplot as plt\n", "import pyreadstat\n", "from IPython.display import display\n", "\n", "from tangles.convenience import Survey, SurveyTangles\n", "\n", "from tangles.convenience.survey_tangles_visualization import plot_tangle_search_tree\n", "\n", "\n", "pd.set_option('display.max_rows', None)\n", "pd.set_option('display.max_columns', None)\n", "pd.set_option('display.max_colwidth', None)\n", "vscrollbar = {'selector': '',\n", " 'props': ' height: 500px; overflow-y: scroll;display: inline-block;'}\n", "hscrollbar = {'selector': '',\n", " 'props': ' height: 500px; overflow-x: scroll;display: inline-block;'}\n", "\n", "def styled_df(df, scrollable: bool = True):\n", " style = df.style.set_properties(**{'border': '1px black solid !important'})\n", " if scrollable:\n", " style = style.set_table_styles([vscrollbar, hscrollbar])\n", " return style\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Survey Tangles\n", "\n", "This notebook shows a small example of a tangle search. The purpose of this notebook is to introduce some facilities provided by the tangle library and to showcase recommended practices for the tangle analysis of survey data. \n", "\n", "The survey we want to investigate is the *European Value Study (EVS)* from 2017: \"The European Values Study (EVS) is a large-scale, cross-national, repeated cross-sectional survey research programme on basic human values. It provides insights into the ideas, beliefs, preferences, attitudes, values and opinions of citizens all over Europe\" (from the [EVS Website](https://europeanvaluesstudy.eu)).\n", "\n", "Due to license restrictions, we cannot share a copy of the survey data in our repository, but you can register and download the data for free at [GESIS](https://search.gesis.org/?source=%7B%22query%22%3A%7B%22bool%22%3A%7B%22must%22%3A%7B%22match_all%22%3A%7B%7D%7D%2C%22filter%22%3A%5B%7B%22term%22%3A%7B%22type%22%3A%22research_data%22%7D%7D%2C%7B%22term%22%3A%7B%22study_group.keyword%22%3A%22European%20Values%20Study%20(EVS)%22%7D%7D%5D%7D%7D%7D&lang=en).\n", "(Please download the SPSS version of the *EVS Integrated Dataset*, create a folder called 'data' that lies next to this notebook and extract the downloaded ZIP file into this folder. If you downloaded the correct file, it should be called **ZA7500_v5-0-0.sav**).\n" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 1. Preparing, Cleaning and Selecting Data\n", "\n", "The tangle library provides special data types for survey data to make the tangle analysis for this type of data as convenient as possible. In this section, we provide a quick overview of the *Survey Tangles Interface* and show the steps needed to prepare survey data for tangles.\n", "\n", "We first have to read the data. If the file was exported from a professional statistics tool, like SPSS or Stata, it is usually best to use the package `pyreadstat`. The package allows to extract *metadata* from the file and store it in a dictionary-like object.\n", "The quality of this metadata varies greatly with the tools used to export the data and the workflow preferences of the user. Therefore, it is often necessary to post-process the metadata for the tangle analysis. Nevertheless, using the metadata from SPSS-files often is a good starting point.\n", "\n", "Files from SPSS usually contain a lot of information about missing data. It is highly recommended to use this information by setting the flag `user_missing` of `read_sav` to `True`:" ] }, { "cell_type": "code", "execution_count": 3, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:11.656916Z", "start_time": "2024-02-05T11:58:06.305569Z" } }, "outputs": [], "source": [ "df, meta = pyreadstat.read_sav(\"./data/ZA7500_v5-0-0.sav\", user_missing=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The tangle library provides a data type `Survey` that manages survey data and its corresponding metadata. The main job of `Survey` objects is to make sure that the data and its metadata do not go out of sync.\n", "In the next cell, we create such a `Survey` object and set the metadata afterward:" ] }, { "cell_type": "code", "execution_count": 4, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:12.648532Z", "start_time": "2024-02-05T11:58:11.657453Z" } }, "outputs": [], "source": [ "complete_survey = Survey(df)\n", "complete_survey.set_pyreadstat_meta_data(meta, type_of_scale_variables='numeric', suppress_check_var_warning=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "For the library to work properly, it is crucial to have meaningful metadata stored in the `Survey` object. For the tangle analysis, the *type* of the variables associated to the questions is the most important kind of metadata. The library contains functions to automatically create binary *features* or *separations* from survey questions if their types are known. \n", "\n", "The best way to turn a question into a set of associated features depends on the type of the variable corresponding to the question. The library supports three types:\n", "\n", "- *Nominal* variables: Variables that take one of a finite set of possible values. An example of a question best represented by a nominal variable is asking a respondent for its favorite ice cream. Such a question typically allows the user to choose one of a fixed set of options.\n", "- *Ordinal* variables: Like nominal variables, ordinal variables take one of a finite number of values, but these categories can be ordered in a meaningful way. An example would be a question asking about the number of days per week the respondent eats ice cream, with possible answers *once*, *two times*, *more than two times but not every day* and *every day*.\n", "- *Numeric* variables: These are variables that potentially can take arbitrary numeric values, for example a question asking for the amount of money spent on ice cream per year.\n", "\n", "The assignment of a type to a variable is not always unambiguous. This is especially the case because there are different ways to classify survey data variables. For example, SPSS contains a variable type *scale*, that describes variables on *interval scale* or *ratio scale*. Depending on the type of scale, the use of certain statistical tools and techniques can be appropriate or inappropriate. In our context, the scale type might overlap the numeric and the ordinal type. It is not uncommon to see survey metadata where every variable has the type `scale`.\n", "\n", "Fortunately, to analyse tangles of a survey, we usually do not have to go into these statistical details. The type of a variable is only used to automatically find a good way to create binary features (or separations) from the questions. For this purpose, the library contains a generic *feature factory* that is easily customizable. A description of the details is out of the scope of this document. Here, we only list the currently implemented default ways to create features:\n", "\n", "- *Nominal* variables: If a nominal question has possible answers $a_1, \\dots, a_k$, the dataset is partitioned into $k$ parts, the $i$-th containing the subset of all respondents that gave the answer $a_i$.\n", "- *Ordinal* variables: If a question has possible answers $a_1 < \\dots < a_k$, the dataset is split at $k-1$ thresholds $a_2,\\dots, a_k$ and the $i$-th feature contains all respondents that gave an answer greater or equal to $a_{i+1}$.\n", "- *Numeric* variables: The range of a numeric variable is split into $k$ parts using $k-1$ equally spaced thresholds between the minimum and maximum value found in the set of all answers. Then, the $i$-th feature is the subset of respondents that gave an answer greater or equal to the $i$-th threshold.\n", "\n", "\n", "As noted earlier, every survey contains the raw data set and information about the variables, i.e. the columns of the table. We can inspect information stored for a table column with the help of the function `variable_info()`. Let's have a look at the metadata found in the SPSS file:" ] }, { "cell_type": "code", "execution_count": 5, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:14.871907Z", "start_time": "2024-02-05T11:58:12.658369Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 idnametypelabelvalid_valuesinvalid_valuesis_usablenum_valid_answersnum_unique_answers
studyno0studynonumericGESIS study number{}{}False594381
version1versionnominalGESIS archive version{}{}False594381
doi2doinominalDigital Object Identifier{}{}False594381
studynoc3studynocnumericGESIS study number (national datasets){}{}True5943836
versionc4versioncnominalGESIS archive version (national datasets){}{}False594385
id_cocas5id_cocasnumericunified respondent number{}{}True5943859438
caseno6casenonumericoriginal respondent number{}{}True5943819504
year7yearnumericsurvey year{2017.0: '2017', 2018.0: '2018', 2019.0: '2019', 2020.0: '2020', 2021.0: '2021'}{}True594385
fw_start8fw_startnumericyear/month of start-fieldwork{}{}True5943819
fw_end9fw_endnumericyear/month of end-fieldwork{}{}True5943819
country10countrynumericcountry code (ISO 3166-1 numeric code){8.0: 'Albania', 31.0: 'Azerbaijan', 40.0: 'Austria', 51.0: 'Armenia', 70.0: 'Bosnia and Herzegovina', 100.0: 'Bulgaria', 112.0: 'Belarus', 191.0: 'Croatia', 203.0: 'Czechia', 208.0: 'Denmark', 233.0: 'Estonia', 246.0: 'Finland', 250.0: 'France', 268.0: 'Georgia', 276.0: 'Germany', 300.0: 'Greece', 348.0: 'Hungary', 352.0: 'Iceland', 380.0: 'Italy', 428.0: 'Latvia', 440.0: 'Lithuania', 499.0: 'Montenegro', 528.0: 'Netherlands', 578.0: 'Norway', 616.0: 'Poland', 620.0: 'Portugal', 642.0: 'Romania', 643.0: 'Russia', 688.0: 'Serbia', 703.0: 'Slovakia', 705.0: 'Slovenia', 724.0: 'Spain', 752.0: 'Sweden', 756.0: 'Switzerland', 804.0: 'Ukraine', 807.0: 'North Macedonia', 826.0: 'Great Britain'}{}True5943836
c_abrv11c_abrvnominalcountry abbreviation (ISO 3166-1 Alpha-2 code){}{}False5943836
cntry_y12cntry_ynumericcountry and year of FW (ISO 3166-1 numeric code){82018.0: 'Albania (2018)', 312018.0: 'Azerbaijan (2018)', 402018.0: 'Austria (2018)', 512018.0: 'Armenia (2018)', 702019.0: 'Bosnia and Herzegovina (2019)', 1002017.0: 'Bulgaria (2017)', 1122018.0: 'Belarus (2018)', 1912017.0: 'Croatia (2017)', 2032017.0: 'Czechia (2017)', 2082017.0: 'Denmark (2017)', 2332018.0: 'Estonia (2018)', 2462017.0: 'Finland (2017)', 2462018.0: 'Finland (2018)', 2502018.0: 'France (2018)', 2682018.0: 'Georgia (2018)', 2762017.0: 'Germany (2017)', 3002019.0: 'Greece (2019)', 3482018.0: 'Hungary (2018)', 3522017.0: 'Iceland (2017)', 3802018.0: 'Italy (2018)', 4282021.0: 'Latvia (2021)', 4402018.0: 'Lithuania (2018)', 4992019.0: 'Montenegro (2019)', 5282017.0: 'Netherlands (2017)', 5782018.0: 'Norway (2018)', 6162017.0: 'Poland (2017)', 6202020.0: 'Portugal (2020)', 6422018.0: 'Romania (2018)', 6422019.0: 'Romania (2019)', 6432017.0: 'Russia (2017)', 6882018.0: 'Serbia (2018)', 7032017.0: 'Slovakia (2017)', 7052017.0: 'Slovenia (2017)', 7242017.0: 'Spain (2017)', 7522017.0: 'Sweden (2017)', 7562017.0: 'Switzerland (2017)', 8042020.0: 'Ukraine (2020)', 8072019.0: 'North Macedonia (2019)', 8262018.0: 'Great Britain (2018)'}{}True5943836
mode13modenumericmode of data collection{1.0: 'CAPI', 2.0: 'PAPI', 3.0: 'CAWI', 4.0: 'Mail', 5.0: 'CATI'}{}True594385
mm_select_sample14mm_select_samplenominalFLAG MIXED-MODE: subsamples on mode variables{1.0: 'interviewer-administered (CAPI PAPI CATI)', 2.0: 'self-administered full-length questionnaire: original question order (CAWI Mail)', 3.0: 'self-administered full-length questionnaire: modified question order (CAWI Mail)', 4.0: 'self-administered matrix: with follow-up (CAWI Mail)', 5.0: 'self-administered matrix: follow-up non response (CAWI Mail)', 6.0: 'self-administered matrix: first survey only (CAWI Mail - DE)', 7.0: 'break-off (less than 50% valid answers)'}{}True594384
mm_mixed_mode15mm_mixed_modenominalMATRIX DESIGN EXPERIMENT: mixed-mode/matrix design{1.0: 'mixed-mode: full questionnaire', 2.0: 'mixed-mode: full (mod. order) questionnaire', 3.0: 'mixed-mode: matrix and follow-up', 4.0: 'mixed-mode: matrix only', 5.0: 'mixed-mode: not applied'}{}True594384
mm_mode_fu16mm_mode_funumericMATRIX DESIGN EXPERIMENT: mode of data collection (follow-up){1.0: 'CAWI (follow-up)', 2.0: 'MAIL (follow-up)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -3.0: 'not applicable'}True38512
mm_matrix_group17mm_matrix_groupnominalMATRIX DESIGN EXPERIMENT: matrix group/variable block{1.0: ' [A B Core] [C D]', 2.0: ' [A C Core[ [B D]', 3.0: ' [A D Core] [B C]', 4.0: ' [B C Core] [A D]', 5.0: ' [B D Core] [A C]', 6.0: ' [C D Core] [A B]', 7.0: 'mixed mode: full questionnaire', 8.0: 'mixed mode: full (modified order) questionnaire', 11.0: '[A B Core]', 21.0: '[A C Core]', 31.0: '[A D Core]', 41.0: '[B C Core]', 51.0: '[B D Core]', 61.0: '[C D Core]'}{-3.0: 'not applicable'}True83468
mm_original_matrix_design_IS18mm_original_matrix_design_ISnominalIS MATRIX DESIGN EXPERIMENT: original matrix design assigned{1.0: 'Matrix design assigned', 2.0: 'Full-length questionnaire assigned'}{-4.0: 'item not included', -3.0: 'not applicable'}True7092
mm_original_matrix_group_IS19mm_original_matrix_group_ISnominalIS MATRIX DESIGN EXPERIMENT: original matrix group assigned{1.0: 'Matrix design assigned: group 1', 2.0: 'Matrix design assigned: group 2', 3.0: 'Matrix design assigned: group 3', 4.0: 'Matrix design assigned: group 4', 5.0: 'Matrix design assigned: group 5', 6.0: 'Matrix design assigned: group 6', 7.0: 'Full-length questionnaire assigned'}{-4.0: 'item not included', -3.0: 'not applicable'}True7097
mm_fw_start_fu20mm_fw_start_funumericMATRIX DESIGN EXPERIMENT: year/month of start-fieldwork (matrix design){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable'}True33792
mm_fw_end_fu21mm_fw_end_funumericMATRIX DESIGN EXPERIMENT: year/month of end-fieldwork (matrix design){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable'}True33793
mm_year_fu22mm_year_funumericMATRIX DESIGN EXPERIMENT: survey year (follow-up){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable'}True33792
mr_detailed_mode_DE23mr_detailed_mode_DEnumericDE RESPONSIVE DESIGN EXPERIMENT: survey mode CAPI/CAWI/MAIL{1.0: 'CAPI (base sample)', 2.0: 'CAPI (base follow-up)', 3.0: 'CAPI (sample increase)', 4.0: 'CAWI matrix (phase 1)', 5.0: 'CAWI matrix (phase 2)', 6.0: 'Mail matrix (phase 1)', 7.0: 'Mail matrix (phase 2)', 8.0: 'CAWI full length', 9.0: 'Mail full length'}{-10.0: 'multi_referencing', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -5.0: 'other missings', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True6762
mr_contact_mode_DE24mr_contact_mode_DEnumericDE RESPONSIVE DESIGN EXPERIMENT: contact mode CAWI/MAIL{1.0: 'sequential', 2.0: 'simultaneous'}{-10.0: 'multi_referencing', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -5.0: 'other missings', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}False6761
mr_incentive_DE25mr_incentive_DEnumericDE RESPONSIVE DESIGN EXPERIMENT: incentive in Euros CAPI/CAWI/MAIL{1.0: '10 EUR postpaid', 2.0: '5 EUR prepaid', 3.0: '20 EUR postpaid'}{-10.0: 'multi_referencing', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -5.0: 'other missings', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}False6761
fduplicate26fduplicatenominalFLAG duplication of cases: merging integrated/matrix design dataset{0.0: 'no duplication of case after merging', 1.0: 'duplication of case after merging'}{}True594382
fmissings27fmissingsnominalflag: complete/incomplete case{0.0: 'full/complete case', 1.0: 'incomplete/partial case', 2.0: 'Break-off (Matrix Design)'}{}True594382
v128v1numerichow important in your life: work (Q1A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587274
v229v2numerichow important in your life: family (Q1B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True592214
v330v3numerichow important in your life: friends and acquaintances (Q1C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True592154
v431v4numerichow important in your life: leisure time (Q1D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590324
v532v5numerichow important in your life: politics (Q1E){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587644
v633v6numerichow important in your life: religion (Q1F){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586224
v734v7numerictaking all things together how happy are you (Q2){1.0: 'very happy', 2.0: 'quite happy', 3.0: 'not very happy', 4.0: 'not at all happy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587074
v835v8numericdescribe your state of health these days (Q3){1.0: 'very good', 2.0: 'good', 3.0: 'fair', 4.0: 'poor', 5.0: 'very poor'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593045
v936v9numericdo you belong to: religious organization (Q4A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583332
v1037v10numericdo you belong to: cultural activities (Q4B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582842
v1138v11numericdo you belong to: trade unions (Q4C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582692
v1239v12numericdo you belong to: political parties/groups (Q4D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582432
v1340v13numericdo you belong to: environment, ecology, animal rights (Q4E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582712
v1441v14numericdo you belong to: professional associations (Q4F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582232
v1542v15numericdo you belong to: sports/recreation (Q4G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583742
v1643v16numericdo you belong to: charitable/humanitarian organization (Q4H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582592
v1744v17numericdo you belong to: consumer organization (Q4I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581812
v1845v18numericdo you belong to: self-help group, mutual aid group (Q4J){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581762
v1946v19numericdo you belong to: other groups (Q4K){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True577282
f2047f20numericFLAG inconsistencies: do you belong to - none (spontaneous) (Q4){0.0: 'consistent', 1.0: 'inconsistent: respondent mentioned at least one item and none of these', 2.0: 'inconsistent: respondent is coded DK or NA for at least one item, and mentioned none of these', 3.0: 'inconsistent: none of these is coded DK or NA, although it is a spontaneous answer category (design error)'}{-4.0: 'item not included'}True538344
v2048v20numericdo you belong to: none (spontaneous) (Q4){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True531852
v20a49v20anominaldo you belong to: I dont know (MQ: to complete question) (Q4){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True266022
v20b50v20bnominaldo you belong to: no answer (MQ: to complete question) (Q4){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True263372
v2151v21numericdid you do voluntary work in the last 6 months (Q5){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589862
v2252v22numericdont like as neighbours: people of different race (Q6A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570842
v2353v23numericdont like as neighbours: heavy drinkers (Q6B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580752
v2454v24numericdont like as neighbours: immigrants/foreign workers (Q6C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True565202
f24_IT55f24_ITnominalIT FLAG EXPERIMENT (item wording modified) : experimental condition item v24 (Q6C){1.0: 'version 1 - dont like as neighbours: immigrants/foreign workers (item v24)', 2.0: 'version 2 - dont like as neighbours: foreign workers (item v24a_IT)', 3.0: 'version 3 - dont like as neighbours: immigrants (item v24b_IT)'}{-4.0: 'item not included', -2.0: 'no answer', -1.0: 'dont know'}True22773
v24a_IT56v24a_ITnominalIT EXPERIMENT (item wording modified): dont like as neighbours: foreign workers (Q6C: version 2){1.0: 'mentioned', 2.0: 'not mentioned'}{-4.0: 'item not included', -2.0: 'no answer', -1.0: 'dont know'}True3032
v24b_IT57v24b_ITnominalIT EXPERIMENT (item wording modified): dont like as neighbours: immigrants (Q6C: version 3){1.0: 'mentioned', 2.0: 'not mentioned'}{-4.0: 'item not included', -2.0: 'no answer', -1.0: 'dont know'}True3352
v2558v25numericdont like as neighbours: drug addicts (Q6D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582472
v2659v26numericdont like as neighbours: homosexuals (Q6E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575132
v2760v27numericdont like as neighbours: Christians (optional in countries with Christian majority) (Q6F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True490032
v2861v28numericdont like as neighbours: Muslims (optional in countries with Muslim majority) (Q6G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True555872
v2962v29numericdont like as neighbours: Jews (optional) (Q6H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570612
v3063v30numericdont like as neighbours: Gypsies (optional) (Q6I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572882
f30a64f30anominalFLAG inconsistencies: dont like as neighbours - none of these (Q6){0.0: 'consistent', 1.0: 'inconsistent: respondent mentioned at least one item and none of these', 2.0: 'inconsistent: respondent is coded DK or NA for at least one item, and mentioned none of these', 3.0: 'inconsistent: none of these is coded DK or NA, although it is a spontaneous answer category (design error)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included'}True192764
v30a65v30anumericdont like as neighbours: wouldn't mind having any of these (Q6){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True178712
v30b66v30bnominaldont like as neighbours: I dont know (MQ: to complete question) (Q6){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True183692
v30c67v30cnominaldont like as neighbours: no answer (MQ: to complete question) (Q6){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True188232
v3168v31numericpeople can be trusted/can't be too careful (Q7){1.0: 'most people can be trusted', 2.0: 'can not be too careful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580832
v3269v32numerichow much you trust: your family (Q8A){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591784
v3370v33numerichow much you trust: people in your neighborhood (Q8B){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586164
v3471v34numerichow much you trust: people you know personally (Q8C){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589814
v3572v35numerichow much you trust: people you meet for the first time (Q8D){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579694
v3673v36numerichow much you trust: people of another religion (Q8E){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True547854
v3774v37numerichow much you trust: people of another nationality (Q8F){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True550874
v3875v38numerichow much control over your life (Q9){1.0: 'none at all', 10.0: 'a great deal'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5855010
v3976v39numerichow satisfied are you with your life (Q10){1.0: 'dissatisfied', 10.0: 'satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5912210
v4077v40numericimportant in a job: good pay (Q11A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587402
v4178v41numericimportant in a job: good hours (Q11B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585382
v4279v42numericimportant in a job: opportunity to use initiative (Q11C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579022
v4380v43numericimportant in a job: generous holidays (Q11D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580072
v4481v44numericimportant in a job: achieving something (Q11E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582182
v4582v45numericimportant in a job: responsible job (Q11F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579652
f45a83f45anumericFLAG inconsistencies: important in a job - none of these (spontaneous) (Q11){0.0: 'consistent', 1.0: 'inconsistent: respondent mentioned at least one item and none of these', 2.0: 'iconsistent: respondent is coded DK or NA for at least one item, and mentioned none of these', 3.0: 'inconsistent: none of these is coded DK or NA, although it is a spontaneous answer category (design error)'}{-8.0: 'follow-up non response', -4.0: 'item not included'}True556464
v45a84v45anumericimportant in a job: none of these (spontaneous) (Q11){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True550392
v45b85v45bnominalimportant in a job: I dont know (MQ: to complete question) (Q11){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True266262
v45c86v45cnominalimportant in a job: no answer (MQ: to complete question) (Q11){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True273512
v4687v46numericjob needed to develop talents (Q12A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587775
f46_IT88f46_ITnominalIT FLAG EXPERIMENT: (answer cat. modified) experimental condition items v46 to v50 (Q12){1.0: \"version 1 - d'accordo/contrario (agree/against)\", 2.0: \"version 2 - d'accordo/in disaccordo (agree/disagree)\"}{-4.0: 'item not included', -2.0: 'no answer', -1.0: 'dont know'}True22772
v4789v47numerichumiliating receiving money without working (Q12B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585155
v4890v48numericpeople turn lazy not working (Q12C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586875
v4991v49numericwork is a duty towards society (Q12D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587145
v5092v50numericwork comes always first (Q12E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588205
v5193v51numericdo you belong to a religious denomination (Q13){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589842
v5294v52nominalwhich religious denomination do you belong to (Q13a) (harmonized){1.0: 'Roman catholic', 2.0: 'Protestant', 3.0: 'Free church/Non-conformist/Evangelical', 4.0: 'Jew', 5.0: 'Muslim', 6.0: 'Hindu', 7.0: 'Buddhist', 8.0: 'Orthodox', 9.0: 'Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True410379
v52_cs95v52_csnumericwhich religious denomination do you belong to (Q13a) (ISO 3166-1, country-specific){801.0: ' AL: Muslim (Sunni)', 802.0: ' AL: Muslim (Bekrathi)', 803.0: ' AL: Roman Catholics', 804.0: ' AL: Orthodox Christians', 805.0: ' AL: Evangelicals', 806.0: ' AL: Protestant', 807.0: ' AL: Mormon', 808.0: \" AL: Jehovah's Witnesses\", 809.0: ' AL: Hindu', 810.0: ' AL: Bahá’ís', 811.0: ' AL: Jewish', 812.0: ' AL: Buddhist', 813.0: ' AL: Other, please specify (Write in)', 3101.0: ' AZ: Muslim', 3102.0: ' AZ: Orthodox', 3103.0: ' AZ: Jewish', 3104.0: ' AZ: Catholic', 3105.0: \" AZ: Baha'i\", 3106.0: ' AZ: Protestant', 3130.0: ' AZ: \\xa0Other, please specify (Write in)', 4001.0: ' AT: Roman Catholic', 4002.0: ' AT: Greek Catholic', 4003.0: ' AT: Armenic Catholic', 4004.0: ' AT: Other Roman Catholic', 4005.0: ' AT: Evangelic Church in Austria', 4006.0: ' AT: Evangelic Church of the Augsburg Confession', 4007.0: ' AT: Evangelic Church of the Helvetic Confession', 4008.0: ' AT: Uniting Churches (e.g. Greek Catholic)', 4009.0: ' AT: Other Evangelic Church', 4010.0: ' AT: Free-church', 4011.0: ' AT: Greek Oriental Church', 4012.0: ' AT: Russian Orthodox Church of Saint Nicholas', 4013.0: ' AT: Polish Orthodox Church', 4014.0: ' AT: Rumanian Greek Oriental Church Community of the Holy Resurrection', 4015.0: ' AT: Serbian Orthodox Church Community of Saint Sava', 4016.0: ' AT: Bulgarian Orthodox Church Community of Saint Ivan Rilski', 4017.0: ' AT: Other Orthodox Greek Oriental Church Community', 4018.0: ' AT: The Church of Jesus Christ of Latter-day Saints (Mormons)', 4019.0: \"AT: Jehovah's Witnesses\", 4020.0: ' AT: Old catholic', 4021.0: ' AT: Other Christian churches', 4022.0: ' AT: Jewish', 4023.0: ' AT: Alevism', 4024.0: ' AT: Shia', 4025.0: ' AT: Sunni', 4026.0: ' AT: Islam', 4027.0: ' AT: Other Islamic Community of Faith', 4028.0: ' AT: Hindu', 4029.0: 'AT: Buddhist', 4030.0: ' AT: Other religion', 4031.0: ' AT: Other, please specify (Write in)', 5101.0: 'AM: Armenian Apostolic Church', 5102.0: 'AM: Orthodox', 5103.0: 'AM: Catholic', 5104.0: 'AM: Protestant', 5105.0: 'AM: Muslim (Islam)', 5106.0: 'AM: Yazidi', 5116.0: 'AM: Other, please specify (Write in)', 7001.0: 'BA: Roman Catholic', 7002.0: 'BA: Serbian Orthodox', 7003.0: 'BA: Islam', 7004.0: 'BA: Jews', 7005.0: 'BA: Evangelic', 7006.0: 'BA: Adventist', 7007.0: 'BA: Baptist', 7008.0: \"BA: Jehovah's witnesses\", 7030.0: 'BA: Other, please specify (Write in)', 10001.0: 'BG: Orthodox', 10002.0: 'BG: Muslim', 10003.0: 'BG: Catholic', 10004.0: 'BG: Protestant', 10005.0: 'BG: Jew', 10006.0: 'BG: Buddhist', 10030.0: 'BG: \\xa0Other, please specify (Write in)', 11201.0: 'BY: Orthodox Church', 11202.0: 'BY: Christians of Evangelical Belief (Pentecostals)', 11203.0: 'BY: Roman Catholic Church', 11204.0: 'BY: Evangelical Christian Baptists', 11205.0: 'BY: Seventh-Day Adventists', 11206.0: 'BY: Christians of the Whole Gospel', 11207.0: 'BY: Old Believers Church', 11208.0: 'BY: Judaic religion (Judaism)', 11209.0: 'BY: Lutheran Church', 11210.0: \"BY: Jehovah's Witnesses\", 11211.0: 'BY: Moslem religion (Islam)', 11212.0: 'BY: New Apostolic Church', 11213.0: 'BY: Greek Catholic Church (uniats)', 11214.0: 'BY: Other, please specify (Write in)', 19101.0: ' HR: The Roman Catholic Church', 19102.0: ' HR: The Greek-Catholic Church', 19103.0: ' HR: The Serbian Orthodox Church', 19104.0: ' HR: The Jewish Community of Zagreb', 19105.0: ' HR: The Evangelic Church', 19106.0: ' HR: The evangelical Church in Croatia (Pentecostal)', 19107.0: ' HR: Union of Baptists Churches in the Republic of Croatian', 19108.0: ' HR: Croatian – Slovenian Conference of the Seventh – Day Adventists Church', 19109.0: ' HR: Jehovah’s Witnesses', 19110.0: ' HR: Muslim (Islamic Community in Croatia)', 19116.0: ' HR: \\xa0Other, please specify (Write in)', 20301.0: 'CZ: Roman Catholic', 20302.0: 'CZ: Greek-Catholic', 20303.0: 'CZ: Evangelical A.V. (Lutheran)', 20304.0: 'CZ: Evangelical Czech Brethren', 20305.0: 'CZ: Czechoslovak Hussite', 20306.0: 'CZ: Jewish', 20307.0: 'CZ: Muslim', 20308.0: 'CZ: Orthodox', 20309.0: \"CZ: Jehovah's Witnesses\", 20310.0: 'CZ: Other Christian', 20311.0: 'CZ: Other than Christian', 20312.0: 'CZ: Other', 20801.0: ' DK: National Church (protestant/lutheran)', 20802.0: ' DK: Islamic', 20803.0: ' DK: Buddhist', 20804.0: ' DK: Hindu', 20805.0: ' DK: Jewish', 20806.0: ' DK: Old Norse', 20807.0: ' DK: Other', 23301.0: 'EE: Lutheran', 23302.0: 'EE: Orthodox (Russian, Moscow)', 23303.0: 'EE: Orthodox (Constantinople)', 23304.0: 'EE: Catholic', 23305.0: 'EE: Judaist', 23306.0: 'EE: Muslim', 23307.0: 'EE: \\xa0Other, please specify (Write in)', 24601.0: ' FI: \\xa0Evangelical Lutheran Church', 24602.0: ' FI: Orthodox Church', 24603.0: ' FI: Roman Catholic Church', 24604.0: ' FI: Pentecostal Church', 24605.0: ' FI: Free Church', 24606.0: \"FI: Jehovah's Witnesses\", 24607.0: ' FI: Judaism', 24608.0: ' FI: Islam', 24610.0: ' FI: Other, please specify (Write in)', 25001.0: ' FR: Catholic', 25002.0: ' FR: Protestant', 25003.0: ' FR: Evangelical / free church', 25004.0: ' FR: Jew', 25005.0: ' FR: Muslim', 25006.0: ' FR: Hindu', 25007.0: ' FR: Buddhist', 25008.0: ' FR: Orthodox', 25016.0: ' FR: Other, please specify (Write in)', 25088.0: ' FR: don’t know (spontaneous)', 25099.0: ' FR: no answer (spontaneous)', 26801.0: 'GE: Orthodox', 26802.0: 'GE: Catholic', 26803.0: 'GE: Gregorian/Armenian Apostolic', 26804.0: 'GE: Protestant', 26805.0: 'GE: Jewish', 26806.0: 'GE: Muslim', 26807.0: \"GE: Jehovah's Witnesses\", 26808.0: 'GE: Sun Cult', 26809.0: 'GE: Baptist', 26816.0: 'GE: Other, please specify (Write in)', 27601.0: 'DE: Roman Catholic Church', 27602.0: 'DE: Protestant Church without Free Churches', 27603.0: 'DE: Protestant Free Churches', 27604.0: 'DE: Greek-Orthodox Church', 27605.0: 'DE: Russian-Orthodox Church', 27606.0: 'DE: Muslim', 27607.0: 'DE: Other religious denomination, please specify (Write in)', 34801.0: ' HU: Roman Catholic', 34802.0: ' HU: Greek Catholic, Armenian Catholic', 34803.0: ' HU: Calvinist', 34804.0: ' HU: Lutheran', 34805.0: ' HU: Baptist', 34806.0: ' HU: Orthodox', 34807.0: ' HU: Jewish', 34808.0: ' HU: Faith Church', 34809.0: ' HU: Witnesses of Jehova', 34810.0: ' HU: Krishna Consciousness', 34815.0: ' HU: \\xa0Other, please specify (Write in)', 35201.0: 'IS: The Evangelical Lutheran Church of Iceland\\xa0', 35202.0: 'IS: Catholic church\\xa0', 35203.0: 'IS: The Independent Congregation', 35204.0: 'IS: The Free Lutheran Church in Reykjavik', 35205.0: 'IS: The Free Lutheran Church in Hafnarfjörður', 35206.0: 'IS: The Pentecostal Assembly\\xa0', 35207.0: \"IS: Jehova's Witnesses\\xa0\", 35208.0: \"IS: The Bahá'í Community\", 35209.0: 'IS: The Asatru Association', 35210.0: 'IS: Smárakirkja', 35211.0: 'IS: The Way', 35212.0: 'IS: Buddhist', 35213.0: 'IS: The Muslim Association of Iceland\\xa0', 35214.0: 'IS: Other, which?', 35215.0: 'IS: Orthodox', 35216.0: 'IS: Sidmennt (the Icelandic Ethical Humanist Association)', 35217.0: 'IS: Seventh day Adventists', 35218.0: 'IS: Zuism', 35219.0: 'IS: Other Christian', 35220.0: 'IS: Other Non Christian', 38001.0: ' IT: Catholic', 38002.0: ' IT: Protestant', 38003.0: ' IT: Orthodox', 38004.0: \" IT: Other Christian Religions (Jeovah's Withnesses, Mormons, etc.)\", 38005.0: ' IT: Jewish', 38006.0: ' IT: Muslim', 38007.0: 'IT: Hindu', 38008.0: ' IT: Buddhist', 38030.0: ' IT: Other, Non-Christian Religion', 42801.0: ' LV: Catholic', 42802.0: ' LV: Lutheran', 42803.0: ' LV: Orthodox', 42804.0: ' LV: Baptist', 42805.0: ' LV: Old believers', 42806.0: ' LV: Pentecostal church', 42807.0: ' LV: Seventh day adventist', 42808.0: ' LV: Methodist church', 42809.0: ' LV: Muslim', 42810.0: ' LV: Buddhist', 42811.0: ' LV: Jew', 42816.0: ' LV: Other, please specify (Write in)', 44001.0: ' LT: Catholic', 44002.0: ' LT: Russian Orthodox', 44003.0: ' LT: Old Believer', 44004.0: ' LT: Evangelical Lutheran', 44005.0: ' LT: Evangelical Reformed', 44006.0: ' LT: Other Evangelical (e.g. Baptists, Methodists)', 44007.0: ' LT: Jew', 44008.0: ' LT: Muslim', 44016.0: ' LT: \\xa0Other, please specify (Write in)', 49901.0: ' ME: Serbian Orthodox Church', 49902.0: ' ME: Montenegrin Orthodox Church', 49903.0: ' ME: Muslim', 49904.0: ' ME: Catholic', 49905.0: ' ME: Protestant', 49906.0: ' ME: Judaism', 49907.0: ' ME: Eastern religions and beliefs', 49916.0: ' ME: Other, please specify (Write in)', 49977.0: ' ME: not applicable', 49988.0: ' ME: don’t know (spontaneous)', 49999.0: ' ME: no answer (spontaneous)', 52801.0: 'NL: Roman Catholic', 52802.0: 'NL: Protestant Church Netherlands', 52803.0: 'NL: Protestant Church Netherlands (Reformed)', 52804.0: 'NL: Protestant Church Netherlands (Lutheran)', 52805.0: 'NL: Protestant Church Netherlands (not specified)', 52806.0: 'NL: Other Protestants', 52807.0: 'NL: Muslim', 52808.0: 'NL: Jewish', 52809.0: 'NL: Hindu', 52810.0: 'NL: Buddhism', 52811.0: 'NL: Other, please specify (Write in)', 57801.0: ' NO: The Church of Norway', 57802.0: ' NO: The Roman Catholic Church', 57803.0: ' NO: The Orthodox church, Russian, Greek, other', 57804.0: ' NO: Judaism', 57805.0: ' NO: Islam', 57806.0: 'NO: Hindu', 57807.0: 'NO: Buddhist', 57808.0: ' NO: Free churches (Protestant denominations outside The Church of Norway)', 57809.0: ' NO: \\xa0Other, please specify (Write in)', 61601.0: 'PL: Roman-catholic', 61602.0: 'PL: Orhodox', 61603.0: 'PL: Jehovah’s Witnesses', 61604.0: 'PL: Protestant-mainstream', 61605.0: 'PL: Evangelic - other', 61606.0: 'PL: Greek-catholic', 61607.0: 'PL: Old-catholic Mariavite Church', 61608.0: 'PL: Judaism', 61609.0: 'PL: Islam', 61610.0: 'PL: Buddism', 61611.0: 'PL: Other, please specify (Write in)', 62001.0: ' PT: Catholic', 62002.0: ' PT: Protestant', 62003.0: ' PT: Eastern Orthodox', 62004.0: ' PT: Other Christian (specify)', 62005.0: ' PT: Jewish', 62006.0: ' PT: Islamic/Muslim', 62007.0: ' PT: Eastern religions', 62008.0: ' PT: Other non-Christian (specify)', 62009.0: ' PT: Evangelical', 62010.0: \" PT: Jehovah's witness\", 64201.0: ' RO: Roman Catholic Church', 64202.0: ' RO: Protestant Church', 64203.0: ' RO: Orthodox Church', 64204.0: ' RO: Jew', 64205.0: ' RO: Muslims', 64206.0: ' RO: Hindu', 64207.0: ' RO: Budhist', 64208.0: ' RO: Greek Catholic Church', 64209.0: \" RO: New protestant Churches (Adventist, Baptist, Jehovah's Whitnesses etc.)\", 64216.0: ' RO: \\xa0Other, please specify (Write in)', 64301.0: ' RU: Orthodox Christian', 64302.0: ' RU: Catholicism', 64303.0: ' RU: Protestantism', 64304.0: ' RU: Islam', 64305.0: ' RU: Judaism', 64306.0: 'RU: Buddhist', 64307.0: 'RU: Hindu', 64316.0: ' RU: Other, please specify (Write in)', 68801.0: ' RS: Serbian Orthodox', 68802.0: ' RS: Roman Catholic', 68803.0: ' RS: Islam', 68804.0: ' RS: Jews', 68805.0: ' RS: Protestant', 68806.0: ' RS: Evangelic', 68807.0: ' RS: Slovakian evangelic', 68808.0: ' RS: Adventist', 68809.0: \" RS: Jehovah's witnesses\", 68810.0: ' RS: Baptist', 68830.0: ' RS: \\xa0Other, please specify (Write in)', 70301.0: 'SK: Roman catholic', 70302.0: 'SK: Lutheran', 70303.0: 'SK: Greek Catholic', 70304.0: 'SK: Calvinist (Reform protestant)', 70305.0: 'SK: Orthodox', 70306.0: \"GE: Jehovah's Witnesses\", 70307.0: 'SK: Jew', 70308.0: 'SK: Other protestant (which one?)', 70309.0: 'SK: Other Christian, excepting protestant (which one?)', 70310.0: 'SK: Muslim', 70311.0: 'SK: Buddhist', 70312.0: 'SK: Hindu', 70316.0: 'SK: Other, please specify (Write in)', 70501.0: ' SI: Roman Catholic', 70502.0: ' SI: Evangelical', 70503.0: ' SI: Orthodox', 70504.0: ' SI: Other Christian', 70505.0: ' SI: Islamic', 70506.0: ' SI: Jewish', 70507.0: ' SI: Hinduistic', 70508.0: ' SI: Buddhist', 70509.0: ' SI: Other eastern', 70510.0: ' SI: Other, please specify (Write in)', 72401.0: 'ES: Christian – no denomination', 72402.0: 'ES: Roman Catholic', 72403.0: 'ES: Greek or Russian Orthodox', 72404.0: 'ES: Protestant (no further detail)', 72405.0: 'ES: Church of England / Anglican', 72406.0: 'ES: Baptist', 72407.0: 'ES: Methodist', 72408.0: 'ES: Presbyterian / Church of Scotland', 72409.0: 'ES: United Reform Church / Congregational', 72410.0: 'ES: Free Presbyterian', 72411.0: 'ES: Hindu', 72412.0: 'ES: Buddhist', 72413.0: 'ES: Jewish', 72414.0: 'ES: Islam / Muslim', 72416.0: 'ES: Other, please specify (Write in)', 75201.0: ' SE: Swedish church', 75202.0: ' SE: Catholic church', 75203.0: ' SE: An orthodox church or congregation', 75204.0: ' SE: Any independent church, protestant', 75205.0: ' SE: Jewish congregation', 75206.0: ' SE: Islamic community', 75207.0: ' SE: Hinduistic community', 75208.0: ' SE: Buddhistic community', 75216.0: ' SE: \\xa0Other, please specify (Write in)', 75601.0: 'CH: Protestant reformed', 75602.0: 'CH: Free evangelical churches', 75603.0: 'CH: Roman Catholic', 75604.0: 'CH: Christian Catholic', 75605.0: 'CH: Christian Orthodox', 75606.0: 'CH: Jewish', 75607.0: 'CH: Islamic', 75608.0: 'CH: Buddhist', 75609.0: 'CH: Hindu', 75616.0: 'CH: Other, please specify (Write in)', 80401.0: ' UA: Orthodox Church of Ukraine (Metropolitan Epiphaniy)', 80402.0: ' UA: Ukrainian Orthodox Church (Metropolitan Onufriy)', 80403.0: ' UA: Ukrainian Greek Catholic Church', 80404.0: ' UA: Roman Catholic Church', 80405.0: ' UA: Evangelical Christian Baptist Church', 80406.0: ' UA: Christian Evangelicalism (Pentecostalism)', 80407.0: ' UA: Seventh-day Adventist Church', 80408.0: ' UA: Evangelicalism', 80409.0: ' UA: Charismatics', 80410.0: \" UA: Jehovah's Witnesses\", 80411.0: ' UA: Judaism', 80412.0: ' UA: Islam', 80413.0: ' UA: Buddhism', 80414.0: ' UA: Hinduism', 80415.0: ' UA: \\xa0Other, please specify (Write in)', 80701.0: 'MK: Christianity - Orthodox', 80702.0: 'MK: Christianity - Catholicism', 80703.0: 'MK: Christianity - Protestantism Please specify', 80704.0: 'MK: Islam - (IRC - Islamic religious community in Republic of Macedonia)', 80705.0: 'MK: Judaism', 80706.0: 'MK: Small religious communities', 80716.0: 'MK: \\xa0Other, please specify (Write in)', 82601.0: ' GB: Christian - no denomination', 82602.0: ' GB: Roman Catholic', 82603.0: ' GB: Church of England/Anglican', 82604.0: ' GB: Baptist', 82605.0: ' GB: Methodist', 82606.0: ' GB: Presbyterian/Church of Scotland', 82607.0: ' GB: Free Presbyterian', 82608.0: ' GB: Brethren', 82609.0: ' GB: United Reform Church (URC)/Congregational', 82610.0: ' GB: Other Protestant (WRITE IN)', 82611.0: ' GB: Other Christian (WRITE IN)', 82612.0: ' GB: Hindu', 82613.0: ' GB: Jewish', 82614.0: ' GB: Islam/Muslim', 82615.0: ' GB: Sikh', 82616.0: ' GB: Buddhist', 82617.0: ' GB: Other non-Christian (WRITE IN)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True41036299
v5396v53numericdid you belong to a religious denomination (Q14){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True189192
v5497v54numerichow often attend religious services (Q15){1.0: 'more than once week', 2.0: 'once a week', 3.0: 'once a month', 4.0: 'only on specific holy days', 5.0: 'once a year', 6.0: 'less often', 7.0: 'never, practically never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588517
v5598v55numerichow often attend religious services 12 years old (Q16){1.0: 'more than once week', 2.0: 'once a week', 3.0: 'once a month', 4.0: 'only on specific holy days', 5.0: 'once a year', 6.0: 'less often', 7.0: 'never, practically never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575517
v5699v56numericare you a religious person (Q17){1.0: 'a religious person', 2.0: 'not a religious person', 3.0: 'a convinced atheist'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570823
v57100v57numericdo you believe in: God (Q18A){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558942
v58101v58numericdo you believe in: life after death (Q18B){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True511862
v59102v59numericdo you believe in: hell (Q18C){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True518682
v60103v60numericdo you believe in: heaven (Q18D){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True518992
v61104v61numericdo you believe in: re-incarnation (Q19){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True522992
v62105v62numericwhich statement closest to your beliefs (Q20){1.0: 'personal God', 2.0: 'spirit or life force', 3.0: \"don't know what to think\", 4.0: 'no spirit, God or life force'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574974
v63106v63numerichow important is God in your life (Q21){1.0: 'not at all important', 10.0: 'very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5794710
v64107v64numerichow often do you pray outside religious services (Q22){1.0: 'every day', 2.0: 'more than once week', 3.0: 'once a week', 4.0: 'at least once a month', 5.0: 'several times a year', 6.0: 'less often', 7.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True578827
v65108v65numericimportant in marriage: faithfulness (Q23A){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591383
v66109v66numericimportant in marriage: adequate income (Q23B){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590783
v67110v67numericimportant in marriage: good housing (Q23C){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591213
v68111v68numericimportant in marriage: share household chores (Q23D){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588873
v69112v69numericimportant in marriage: children (Q23E){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586763
v70113v70numericimportant in marriage: time for friends and personal hobbies (Q23F){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588143
v71114v71numericmarriage is outdated (Q24){1.0: 'agree', 2.0: 'disagree'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573492
v72115v72numericchild suffers with working mother (Q25A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580804
v72_DE116v72_DEnumericDE MODIFIED (additional middle cat): child suffers with working mother (Q25A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v73117v73numericwomen really want home and children (Q25B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572414
v73_DE118v73_DEnumericDE MODIFIED (additional middle cat): women really want home and children (Q25B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v74119v74numericfamily life suffers when woman has full-time job (Q25C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580554
v74_DE120v74_DEnumericDE MODIFIED (additional middle cat): family life suffers when woman has full-time job (Q25C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v75121v75numericman's job is to earn money; woman's job is to look after home and family (Q25D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584664
v75_DE122v75_DEnumericDE MODIFIED (additional middle cat): man's job is to earn money; woman's job is to look after home and family (Q25D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v76123v76numericmen make better political leaders than women (Q25E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True569944
v76_DE124v76_DEnumericDE MODIFIED (additional middle cat): men make better political leaders than women (Q25E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v77125v77numericuniversity education more important for a boy than for a girl (Q25F){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581834
v77_DE126v77_DEnumericDE MODIFIED (additional middle cat): university education more important for a boy than for a girl (Q25F){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v78127v78numericmen make better business executives than women (Q25G){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True571584
v78_DE128v78_DEnumericDE MODIFIED (additional middle cat): men make better business executives than women (Q25G){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v79129v79numericone of main goals in life has been to make my parents proud (Q25H){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True566224
v79_DE130v79_DEnumericDE MODIFIED (additional middle cat): one of main goals in life has been to make my parents proud (Q25H){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree (additional category)', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False00
v80131v80numericjobs are scarce: giving...(nation) priority (Q26A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586335
v81132v81numericjobs are scarce: giving men priority (Q26B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586955
v82133v82numerichomosexual couples - as good parents as other couples (Q27A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True547645
v83134v83numericduty towards society to have children (Q27B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584915
v84135v84numericIt is childs duty to provide long-term care for parents (Q27C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586785
f85136f85nominalFLAG inconsistencies: learn children at home: more than five (Q28){0.0: 'consistent', 1.0: 'inconsistent'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'Item not included'}True594382
v85137v85numericlearn children at home: good manners (Q28A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587982
v86138v86numericlearn children at home: independence (Q28B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586272
v87139v87numericlearn children at home: hard work (Q28C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587082
v88140v88numericlearn children at home: feeling of responsibility (Q28D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587292
v89141v89numericlearn children at home: imagination (Q28E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581602
v90142v90numericlearn children at home: tolerance and respect (Q28F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585602
v91143v91numericlearn children at home: thrift, saving money and things (Q28G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584322
v92144v92numericlearn children at home: determination, perseverance (Q28H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583762
v93145v93numericlearn children at home: religious faith (Q28I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581242
v94146v94numericlearn children at home: unselfishness (Q28J){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581902
v95147v95numericlearn children at home: obedience (Q28K){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581892
f96148f96numericFLAG inconsistencies: learn children at home - none (spontaneous) (Q28){0.0: 'consistent', 1.0: 'inconsistent: respondent mentioned at least one item and none of these', 2.0: 'inconsistent: respondent is coded DK or NA for at least one item, and mentioned none of these', 3.0: 'inconsistent: none of these is coded DK or NA, although it is a spontaneous answer category (design error)'}{-8.0: 'follow-up non response', -4.0: 'item not included'}True542754
v96149v96numericlearn children at home: none (spontaneous) (Q28){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True536712
v96a150v96anominallearn children at home: I dont know (MQ: to complete question) (Q28){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True321132
v96b151v96bnominallearn children at home: no answer (MQ: to complete question) (Q28){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True328382
v97152v97numerichow interested are you in politics (Q29){1.0: 'very interested', 2.0: 'somewhat interested', 3.0: 'not very interested', 4.0: 'not at all interested'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591324
v98153v98numericpolitical action: signing a petition (Q30A){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570023
v99154v99numericpolitical action: joining in boycotts (Q30B){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558753
v100155v100numericpolitical action: attending lawful demonstrations (Q30C){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True566223
v101156v101numericpolitical action: joining unofficial strikes (Q30D){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True554743
v102157v102numericpolitical view: left-right (Q31){1.0: 'the left', 10.0: 'the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4772310
v103158v103numericindividual vs. state responsibility for providing (Q32A){1.0: 'individual responsibility', 10.0: 'state responsibility'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5821410
v104159v104numerictake any job vs. right to refuse job when unemployed (Q32B){1.0: 'unemployed take any job', 10.0: 'unemployed right to refuse a job'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5806610
v105160v105numericcompetition is good vs. harmful (Q32C){1.0: 'competition good', 10.0: 'competition harmful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5751610
v106161v106numericequalize incomes vs. incentives for individual effort (Q32D){1.0: 'incomes more equal', 10.0: 'incentives to individual efforts'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5810310
v107162v107numericprivate vs. government ownership business (Q32E){1.0: 'private ownership increased', 10.0: 'government ownership increased'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5499110
f108163f108nominalFLAG inconsistencies: aims of country (Q33/Q33a){0.0: 'consistent', 1.0: 'inconsistent'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included'}True592482
v108164v108numericaims of this country: most important (Q33){1.0: 'high level of economic growth', 2.0: 'strong defense forces', 3.0: 'more say at their jobs/ in communities', 4.0: 'make cities/countryside more beautiful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575034
v109165v109numericaims of this country: 2nd most important (Q33a){1.0: 'high level of economic growth', 2.0: 'strong defense forces', 3.0: 'more say at their jobs/ in communities', 4.0: 'make cities/countryside more beautiful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True563424
f110166f110nominalFLAG inconsistencies: aims of respondent (Q34/Q35){0.0: 'consistent', 1.0: 'inconsistent'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included'}True593212
v110167v110numericaims of respondent: most important (Q34){1.0: 'maintaining order in nation', 2.0: 'more say in important government decisions', 3.0: 'fighting rising prices', 4.0: 'protect freedom of speech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580664
v111168v111numericaims of respondent: 2nd most important (Q35){1.0: 'maintaining order in nation', 2.0: 'more say in important government decisions', 3.0: 'fighting rising prices', 4.0: 'protect freedom of speech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True571784
v111_4169v111_4nominalpost-materialist index 4-item (constructed){1.0: 'Materialist', 2.0: 'Mixed', 3.0: 'Postmaterialist'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570533
v112170v112numericare you willing to fight for country (Q36){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True527182
f112_SE171f112_SEnominalSE MODIFIED QUESTION: are you willing to fight for country (Q36){1.0: \"Wording of Q36 using the term 'strida för' (fight for)\", 2.0: \"Wording of Q36 using the term 'försvara' (defend)\"}{-4.0: 'item not included'}True11942
v113172v113numericgood/bad: decrease work importance (Q37A){1.0: 'good', 2.0: 'bad', 3.0: \"don't mind\"}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True560283
v114173v114numericgood/bad: greater respect for authority (Q37B){1.0: 'good', 2.0: 'bad', 3.0: \"don't mind\"}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True552803
v115174v115numerichow much confidence in: church (Q38A){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574554
v116175v116numerichow much confidence in: armed forces (Q38B){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True560064
v117176v117numerichow much confidence in: education system (Q38C){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581594
v118177v118numerichow much confidence in: the press (Q38D){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580724
v119178v119numerichow much confidence in: trade unions (Q38E){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True541914
v120179v120numerichow much confidence in: the police (Q38F){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584954
v121180v121numerichow much confidence in: parliament (Q38G){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573664
v122181v122numerichow much confidence in: civil service (Q38H){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572284
v123182v123numerichow much confidence in: social security system (Q38I){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572944
v124183v124numerichow much confidence in: European Union (Q38J){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True557054
v125184v125numerichow much confidence in: United Nations Organization (Q38K){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True541684
v126185v126numerichow much confidence in: health care system (Q38L){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585854
v127186v127numerichow much confidence in: justice system (Q38M){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570924
v128187v128numerichow much confidence in: major companies (Q38N){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True546454
v129188v129numerichow much confidence in: environmental organizations (Q38O){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True555824
v130189v130numerichow much confidence in: political parties (Q38P){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True568844
v131190v131numerichow much confidence in: government (Q38Q){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575064
v132191v132numerichow much confidence in: social media (Q38R){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True543414
v133192v133numericdemocracy: governments tax the rich and subsidize the poor (Q39A){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5298011
v133_11c193v133_11cnumericMODIFIED (cat. 0 displayed): democracy: governments tax the rich and subsidize the poor (Q39A){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True328311
v134194v134numericdemocracy: religious authorities interpret the laws (Q39B){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5189211
v134_11c195v134_11cnumericMODIFIED (cat. 0 displayed): democracy: religious authorities interpret the laws (Q39B){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True322711
v135196v135numericdemocracy: people choose their leaders in free elections (Q39C){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5401511
v135_11c197v135_11cnumericMODIFIED (cat. 0 displayed): democracy: people choose their leaders in free elections (Q39C){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True336811
v136198v136numericdemocracy: people receive state aid for unemployment (Q39D){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5397711
v136_11c199v136_11cnumericMODIFIED (cat. 0 displayed): democracy: people receive state aid for unemployment (Q39D){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True338711
v137200v137numericdemocracy: the army takes over when government is incompetent (Q39E){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5189611
v137_11c201v137_11cnumericMODIFIED (cat. 0 displayed): democracy: the army takes over when government is incompetent (Q39E){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True327111
v138202v138numericdemocracy: civil rights protect people from state oppression (Q39F){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5250411
v138_11c203v138_11cnumericMODIFIED (cat. 0 displayed): democracy: civil rights protect people from state oppression (Q39F){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True332311
v139204v139numericdemocracy: the state makes people’s incomes equal (Q39G){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5305011
v139_11c205v139_11cnumericMODIFIED (cat. 0 displayed): democracy: the state makes people’s incomes equal (Q39G){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True332811
v140206v140numericdemocracy: people obey their rulers (Q39H){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5306811
v140_11c207v140_11cnumericMODIFIED (cat. 0 displayed): democracy: people obey their rulers (Q39H){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True332611
v141208v141numericdemocracy: women have the same rights as men (Q39I){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5442611
v141_11c209v141_11cnumericMODIFIED (cat. 0 displayed): democracy: women have the same rights as men (Q39I){0.0: 'it is against democracy', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True344011
v142210v142numericimportance of democracy (Q40){1.0: 'not at all important', 10.0: 'absolutely important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5812510
v143211v143numericdemocracy in own country (Q41){1.0: 'not at all democratic', 10.0: 'completely democratic'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5721410
v144212v144numericsatisfaction political system (Q42){1.0: 'not satisfied at all', 10.0: 'completely satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5753010
v145213v145numericpolitical system: strong leader (Q43A){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True553744
v146214v146numericpolitical system: experts making decisions (Q43B){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True543134
v147215v147numericpolitical system: the army ruling (Q43C){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True554094
v148216v148numericpolitical system: democratic (Q43D){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True562454
v149217v149numericdo you justify: claiming state benefits (Q44A){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5824010
v150218v150numericdo you justify: cheating on tax (Q44B){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5851110
v151219v151numericdo you justify: taking soft drugs (Q44C){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5844210
v152220v152numericdo you justify: accepting a bribe (Q44D){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5872310
v153221v153numericdo you justify: homosexuality (Q44E){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5695210
v154222v154numericdo you justify: abortion (Q44F){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5727710
v155223v155numericdo you justify: divorce (Q44G){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5790310
v156224v156numericdo you justify: euthanasia (Q44H){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5618510
v157225v157numericdo you justify: suicide (Q44I){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5670510
v158226v158numericdo you justify: having casual sex (Q44J){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5703310
v159227v159numericdo you justify: avoiding a fare on public transport (Q44K){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5855910
v160228v160numericdo you justify: prostitution (Q44L){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5770910
v161229v161numericdo you justify: artificial insemination or in-vitro fertilization (Q44M){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5680010
v162230v162numericdo you justify: political violence (Q44N){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5800910
v163231v163numericdo you justify: death penalty (Q44O){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5712310
v164232v164numerichow close do you feel: to own town/city (Q45A){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589424
v165233v165numerichow close do you feel: to your [county, region, district] (Q45B){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587864
v166234v166numerichow close do you feel: to [country] (Q45C){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588574
v167235v167numerichow close do you feel: to [continent] (Q45D){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581104
v168236v168numerichow close do you feel: to world (Q45E){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573934
v169237v169numericdo you have... [country's] nationality (Q46){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593182
v170238v170numerichow proud are you to be a ... [country] citizen (Q47){1.0: 'very proud', 2.0: 'quite proud', 3.0: 'not very proud', 4.0: 'not at all proud'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558854
v171239v171numericvote in elections: local level (Q48A){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True575253
v172240v172numericvote in elections: national level (Q48B){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True569523
v173241v173numericvote in elections: European level (Q48C){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True342423
v174_LR242v174_LRnominalpolitical party: appeals to you most: left/right scale (Q49){1.0: 'left', 2.0: '', 3.0: '', 4.0: '', 5.0: '', 6.0: '', 7.0: '', 8.0: '', 9.0: '', 10.0: 'right', 44.0: 'not classifiable'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4044811
v174_cs243v174_csnumericwhich political party appeals to you most (Q49) (ISO 3166-1, country-specific){801.0: ' AL: Democratic Party, PD', 802.0: ' AL: Socialist Party', 803.0: ' AL: Socialist Movement for Integration', 804.0: ' AL: The Human Rights Union Party', 805.0: ' AL: Christian Democrats', 806.0: ' AL: Republican Party', 807.0: ' AL: Social Democracy Party', 808.0: ' AL: Movement of Legality Party', 809.0: ' AL: National Front Party', 810.0: ' AL: New Democrat Party', 811.0: ' AL: Justice, Integration and Unity Party', 812.0: ' AL: Challenge for Albania', 813.0: ' AL: Social Democratic Party', 814.0: ' AL: Environmental Party', 815.0: ' AL: Albanian Democratic Union Party', 816.0: ' AL: Liberal Democratic Union Party', 817.0: ' AL: Agrarian Environmentalist Party', 818.0: \" AL: Albanian Workers' Party\", 819.0: ' AL: Communist Party of Albania', 820.0: \" AL: The People's Alliance Party\", 821.0: ' AL: Equal List, LIBRA', 822.0: ' AL: Green Party', 823.0: ' AL: Albanian Republican Union Party', 824.0: ' AL: Moderate Socialist Party', 825.0: ' AL: Party of People with Disabilities', 826.0: ' AL: Other, please specify (WRITE IN)', 866.0: ' AL: No [no other] party appeals to me', 877.0: ' AL: not applicable', 888.0: ' AL: don’t know (spontaneous)', 899.0: ' AL: no answer (spontaneous)', 3101.0: ' AZ: New Azerbaijan Party', 3102.0: ' AZ: Musavat/Equality Party', 3103.0: ' AZ: Azerbaijan Democratic Party', 3104.0: ' AZ: Popular Front Party', 3105.0: ' AZ: National Independence Party', 3106.0: ' AZ: Azerbaijan Liberal Party', 3107.0: ' AZ: Social-Democratic Party', 3108.0: ' AZ: Communist Party', 3109.0: ' AZ: Justice Party', 3110.0: ' AZ: Civic Solidarity Party', 3111.0: ' AZ: Motherland Party', 3112.0: ' AZ: Azerbaijan Party of Hope', 3113.0: ' AZ: Social Prosperity Party', 3114.0: ' AZ: Azerbaijan Party of Democratic Reform', 3115.0: ' AZ: Whole Azerbaijan Popular Front Party', 3116.0: ' AZ: Great Order Party', 3117.0: ' AZ: United Communist Party', 3118.0: ' AZ: Party of Unity', 3119.0: ' AZ: Modern Musavat Party', 3131.0: ' AZ: Other, please specify (WRITE IN)', 3166.0: ' AZ: No [, no other] party appeals to me (spontaneous)', 4001.0: 'AT: Social Democratic Party of Austria - SPÖ', 4002.0: \"AT: List Kurz / Austrian People's Party - ÖVP\", 4003.0: 'AT: Freedom Party of Austria - FPÖ', 4004.0: 'AT: The Greens - The Green Alternative', 4005.0: 'AT: The new Austria - NEOS', 4006.0: 'AT: List Peter Pilz', 4026.0: 'AT: Other, please specify (WRITE IN)', 4066.0: 'AT: No [no other] party appeals to me (spontaneous)', 5101.0: 'AM: Armenian Revolutionary Federation', 5102.0: 'AM: Armenian Communist Party', 5103.0: \"AM: 'Exit' (Way out) Party Union\", 5104.0: 'AM: Free Democrats Party', 5105.0: 'AM: Democratic Party of Armenia', 5106.0: 'AM: Heritage Party', 5107.0: 'AM: Armenian National Congress (former All-Armenian Movement)', 5108.0: 'AM: People’s Party of Armenia', 5109.0: 'AM: Tsarukyan Block (Prosperous Armenia Party)', 5110.0: 'AM: Republican Party of Armenia', 5111.0: \"AM: 'Apricot`s country' Party\", 5112.0: 'AM: Armenian Renaissance Party (Former Rule of Law)', 5126.0: 'AM: Other, please specify (WRITE IN)', 5166.0: 'AM: No [no other] party appeals to me (spontaneous)', 7001.0: 'BA: Bosnian Party', 7002.0: 'BA: Democratic Front', 7003.0: 'BA: Croatian Democratic Union - 1990', 7004.0: 'BA: Croatian Democratic Union', 7005.0: 'BA: Croatian republican party', 7006.0: 'BA: Croatian Party of Rights', 7007.0: 'BA: Liberal Democratic Party', 7008.0: 'BA: People and Justice', 7009.0: 'BA: Our Party', 7010.0: 'BA: Party of Democratic Progress', 7011.0: 'BA: Movement of Democratic Action', 7012.0: 'BA: The Alliance of Independent Social Democrats', 7013.0: 'BA: Union for a better future of BiH', 7014.0: 'BA: Social-Democratic Party', 7015.0: 'BA: Serbian Democratic Party', 7016.0: \"BA: Democratic People's Alliance\", 7017.0: 'BA: Party of Democratic Action', 7018.0: 'BA: National Democratic Movement', 7019.0: 'BA: Independent Bloc', 7031.0: 'BA: Other, please specify (WRITE IN)', 7066.0: 'BA: No [,no other] party appeals to me', 10001.0: 'BG: Citizens for European Development of Bulgaria', 10002.0: 'BG: Bulgarian Socialist Party (BSP)', 10003.0: 'BG: Movement for Rights and Freedoms (MRF)', 10004.0: 'BG: Attack', 10005.0: 'BG: Union of Democratic Forces', 10006.0: 'BG: Democrats for a Strong Bulgaria', 10007.0: 'BG: VMRO – Bulgarian National Movement', 10008.0: 'BG: Political Party VOLYA', 10009.0: 'BG: Alternative for Bulgarian Revival', 10010.0: 'BG: Movement 21', 10011.0: 'BG: DOST Democrats for Responsibility, Freedom, Tolerance', 10012.0: 'BG: Movement Bulgaria of the Citizens', 10013.0: 'BG: Party The Greens', 10014.0: 'BG: Yes, Bulgaria', 10015.0: 'BG: National Front for the Salvation of Bulgaria', 10026.0: 'BG: Other, please specify (WRITE IN)', 10066.0: 'BG: No [no other] party appeals to me (spontaneous)', 11201.0: 'BY: Liberal Democratic Party', 11202.0: 'BY: Belarusian Social Sports Party', 11203.0: 'BY: Belarusian Party “The Greens” (“Zyalyoniya”)', 11204.0: 'BY: Social-Democratic Party of Peoples Concord (Narodnai Zgody)', 11205.0: 'BY: Belarusian Agrarian Party', 11206.0: 'BY: Republican Party', 11207.0: 'BY: Conservative Christian Party – BNF', 11208.0: 'BY: Party BNF', 11209.0: 'BY: Republican Party of Labor and Justice', 11210.0: \"BY: Belarusian Party of the Left 'Fair World'\", 11211.0: 'BY: United Civic Party', 11212.0: 'BY: Belarusian Patriotic Party', 11213.0: 'BY: Party “Belarusian Social-Democratic Assembly” (Hramada)', 11214.0: 'BY: Belarusian Social-Democratic Party (Assembly) (Hramada)', 11215.0: 'BY: Communist Party of Belarus', 11216.0: 'BY: Supporters of the political policy of the President of the Republic of Belarus A.G.\\xa0Lukashenko', 11226.0: 'BY: Other, please specify (WRITE IN)', 11266.0: 'BY: No [,no other] party appeals to me (spontaneous)', 19101.0: 'HR: Bandić Milan 365', 19102.0: 'HR: Croatian democratic union', 19103.0: \"HR: Croatian people's party\", 19104.0: 'HR: Croatian peasant party', 19105.0: 'HR: Croatian social liberal party', 19106.0: 'HR: Croatian party of rights', 19107.0: 'HR: Croatian party of pensioners', 19108.0: 'HR: Croatian democratic alliance of Slavonia and Baranja', 19109.0: 'HR: Istrian democratic assembly', 19110.0: 'HR: Smart', 19111.0: 'HR: Gorski-Kotar alliance', 19112.0: 'HR: Independent democratic Serbian party', 19113.0: 'HR: Bridge of Independent Lists', 19114.0: 'HR: Social democratic party of Croatia', 19115.0: 'HR: Human shield', 19126.0: 'HR: Other, please specify (WRITE IN)', 19166.0: 'HR: No [, no other] party appeals to me (spontaneous)', 20301.0: 'CZ: ANO', 20302.0: 'CZ: ČSSD (Czech Social Democratic Party)', 20303.0: 'CZ: KSČM (Communist Party of Bohemia and Moravia)', 20304.0: 'CZ: ODS (Civic Democratic Party)', 20305.0: 'CZ: KDU-ČSL (Christian Democratic Party - Czechoslovak Peoples´Party)', 20306.0: 'CZ: TOP 09', 20307.0: 'CZ: Piráti (Pirates)', 20308.0: 'CZ: SPD (Freedom and Direct Democracy- Tomio Okamura)', 20309.0: 'CZ: SZ (Green Party)', 20310.0: 'CZ: STAN (Mayors and Independents)', 20311.0: 'CZ: Úsvit-NK (Dawn- National Coalition)', 20312.0: 'CZ: Svobodní (Party of Free Citizens)', 20313.0: 'CZ: SPO (Party for the Rights of Citizens)', 20314.0: 'CZ: Realisté (Realists)', 20315.0: 'CZ: DSSS (Worker´s Party of Social Justice)', 20316.0: 'CZ: Other', 20366.0: 'CZ: No [no other] party appeals to me (spontaneous)', 20801.0: ' DK: The Social Democrats', 20802.0: ' DK: Danish Social Liberal Party', 20803.0: ' DK: Conservative Peoples Party', 20804.0: ' DK: Socialist Peoples Party', 20805.0: ' DK: Danish Peoples Party', 20806.0: ' DK: The New Right', 20807.0: ' DK: Venstre, Denmarks Liberal Party', 20808.0: ' DK: Liberal Alliance', 20809.0: ' DK: Red-Green Alliance', 20810.0: ' DK: The Alternative', 20811.0: ' DK: Blank vote', 20866.0: ' DK: No [no other] party appeals to me', 23301.0: 'EE: Estonian Centre Party', 23302.0: 'EE: Estonian Reform Party', 23303.0: 'EE: Social Democratic Party', 23304.0: 'EE: Union of Pro Patria and Res Publica', 23305.0: 'EE: Estonian Greens', 23306.0: 'EE: Estonian Conseravative Peoples party', 23307.0: 'EE: Estonian Free Party', 23331.0: 'EE: Other, please specify (WRITE IN)', 23366.0: 'EE: No [no other] party appeals to me (spontaneous)', 24601.0: ' FI: Center party', 24602.0: ' FI: National Coalition Party', 24603.0: ' FI: Social democratic party', 24604.0: ' FI: Left alliance', 24605.0: ' FI: Green league', 24606.0: ' FI: Christian democrats', 24607.0: \" FI: Swedish People's Party in Finland\", 24608.0: ' FI: Finns Party', 24609.0: ' FI: Other, please specify (WRITE IN)', 24666.0: ' FI: No [no other] party appeals to me', 25001.0: \" FR: Left Wing Extremist Parties (New Anticapitalist Party, Workers' Struggle, Independent Workers' Party)\", 25002.0: ' FR: Unsubmissive France', 25003.0: ' FR: Communist Party', 25004.0: ' FR: Socialist Party', 25005.0: \" FR: Other Left Wing Parties (Radical Leftist Party, Republicain's and Citizen's Movement\", 25006.0: ' FR: Europe Ecology – The Greens', 25007.0: ' FR: Other Environmentalist Parties', 25008.0: ' FR: The Republic Onwards', 25009.0: ' FR: Democratic Movement', 25010.0: ' FR: Union of Democrats and Independents', 25011.0: ' FR: Act – The constructive right', 25012.0: ' FR: The Republicans', 25013.0: ' FR: France Arise', 25014.0: ' FR: National Front', 25015.0: ' FR: Other Right Wing Extremist Parties (The Patriots, National Republican Movement)', 25026.0: ' FR: Other, please specify (WRITE IN)', 25066.0: ' FR: No [no other] party appeals to me (spontaneous)', 26801.0: 'GE: United National Movement', 26802.0: 'GE: Georgian Labor Party', 26803.0: 'GE: New Rightists Party', 26804.0: 'GE: Republican Party of Georgia', 26805.0: 'GE: Industry Will Save Georgia', 26806.0: 'GE: United Democratic Movement', 26807.0: 'GE: Alliance of Patriots of Georgia', 26808.0: 'GE: European Georgia', 26809.0: 'GE: Free Democrats', 26810.0: 'GE: Georgian Dream - Democratic Georgia', 26811.0: 'GE: National Forum', 26812.0: 'GE: State for the People', 26813.0: 'GE: New Political Center Girchi', 26814.0: 'GE: New Georgia', 26815.0: 'GE: Development Party', 26826.0: 'GE: Other', 26866.0: 'GE: No [no other] party appeals to me (spontaneous)', 27601.0: 'DE: Christian Democratic Party/Christian Social Union', 27602.0: 'DE: German Social-Democratic Party', 27603.0: 'DE: German Liberal Party', 27604.0: 'DE: The Green Party', 27605.0: 'DE: The Left', 27606.0: 'DE: Alternative for Germany', 27607.0: 'DE: Other, please specify (WRITE IN)', 27666.0: 'DE: No [no other] party appeals to me (spontaneous)', 34801.0: 'HU: Hungarian Socialist Party (MSZP)', 34802.0: 'HU: Fidesz', 34803.0: \"HU: Christian Democratic People's Party (KDNP)\", 34804.0: 'HU: Movement for a Better Hungary (Jobbik)', 34805.0: 'HU: Politics Can Be Different (LMP)', 34806.0: 'HU: Democratic Coalition (DK)', 34807.0: 'HU: Together – Party for a New Era (Együtt)', 34808.0: 'HU: Dialogue for Hungary (PM)', 34809.0: 'HU: Momentum Movement (Momentum)', 34810.0: 'HU: Hungarian Liberal Party (Liberálisok)', 34811.0: 'HU: Hungarian Two-tailed Dog Party (MKKP)', 34812.0: \"HU: Hungarian Workers' Party (Munkáspárt)\", 34826.0: 'HU: Other, please specify (WRITE IN)', 34866.0: 'HU: No [no other] party appeals to me (spontaneous)', 35201.0: 'IS: The Independence Party', 35202.0: 'IS: The Progressive Party', 35203.0: 'IS: The Social Democratic Alliance', 35204.0: 'IS: The\\xa0Left-Green Movement\\xa0', 35205.0: 'IS: Bright Future', 35206.0: 'IS: Pirate Party', 35207.0: 'IS: Reform Party', 35208.0: 'IS: Dawn - The organization of justice, fairness and democracy', 35209.0: \"IS: The People's Front of Iceland\", 35210.0: 'IS: The\\xa0Icelandic National Front', 35211.0: \"IS: The People's Party\\xa0\", 35212.0: 'IS: The Humanist Party', 35216.0: 'IS: Centre Party', 35226.0: 'IS: Other, please specify (WRITE IN)', 35266.0: 'IS: No (no other) party appeals to me', 38001.0: ' IT: Communist Party', 38002.0: ' IT: Power to the People!', 38003.0: ' IT: Free and Equal', 38004.0: ' IT: Italy Europe Together', 38005.0: ' IT: Democratic Party', 38006.0: ' IT: More Europe', 38007.0: ' IT: Popular Civic Lorenzin', 38008.0: ' IT: SVP - PATT', 38009.0: ' IT: Five Star Movement', 38010.0: ' IT: Us with Italy - UDC (Union of the Centre)', 38011.0: ' IT: The People of the Family', 38012.0: ' IT: Go Italy', 38013.0: ' IT: League', 38014.0: ' IT: Brothers of Italy with Giorgia Meloni', 38015.0: ' IT: CasaPound Italy', 38016.0: ' IT: Italy to the Italians', 38031.0: ' IT: Other, please specify (WRITE IN)', 38066.0: ' IT: No [no other] party appeals to me (spontaneous)', 42801.0: ' LV: Harmony', 42802.0: ' LV: KPV LV', 42803.0: ' LV: New Conservative Party', 42804.0: ' LV: Development/For!', 42805.0: ' LV: National Alliance', 42806.0: ' LV: Union of Greens and Farmers', 42807.0: ' LV: New Unity', 42808.0: ' LV: Latvian Association of Regions', 42809.0: ' LV: Russian Union', 42810.0: ' LV: Progressives', 42816.0: ' LV: Other, please specify (WRITE IN)', 42866.0: ' LV: No party appeals to me (spontaneous)', 44001.0: ' LT: Labour Party', 44002.0: ' LT: Lithuanian Centre Party', 44003.0: ' LT: Lithuanian Freedom Union (Liberals)', 44004.0: ' LT: Electoral Action of Poles – Christian Families Aliance', 44005.0: ' LT: Liberal Union of Lithuanian Republic', 44006.0: ' LT: Lithuanian Social Democratic Party', 44007.0: ' LT: Lithuanian Farmers and Greens Union', 44008.0: \" LT: Party 'Order and Justice'\", 44009.0: \" LT: Political Party 'List of Lithuania'\", 44010.0: ' LT: Homeland Union: Lithuanian Christian Democrats', 44011.0: ' LT: Lithuanian Green Party', 44012.0: ' LT: Other, please specify (WRITE IN)', 44066.0: ' LT: No [, no other] party appeals to me', 49901.0: ' ME: Democratic party of socialists', 49902.0: ' ME: Socialdemocratic party', 49903.0: ' ME: Socialdemocrats of Montenegro', 49904.0: \" ME: Socialist people's party\", 49905.0: ' ME: Democratic front', 49906.0: ' ME: Positive Montenegro', 49907.0: ' ME: Liberal party of Montenegro', 49908.0: ' ME: DEMOS', 49909.0: ' ME: United Montenegro', 49910.0: ' ME: Democratic Montenegro', 49911.0: ' ME: United reform action', 49912.0: ' ME: Montenegrin (party)', 49913.0: \" ME: Bosniak's party\", 49914.0: ' ME: Democratic alliance in Montenegro', 49915.0: ' ME: Democratic union of of Albanians', 49916.0: ' ME: Albanian Alternative', 49917.0: ' ME: FORCA', 49918.0: ' ME: Croatian civic initiative', 49919.0: ' ME: True Montenegro', 49926.0: ' ME: Other, please specify (WRITE IN)', 49966.0: ' ME: No [, no other] party appeals to me', 52801.0: \"NL: People's Party for Freedom and Democracy\", 52802.0: 'NL: Party for Freedom', 52803.0: 'NL: Christian Democratic Appeal', 52804.0: 'NL: Democrats 66', 52805.0: 'NL: GreenLeft', 52806.0: 'NL: Socialist Party', 52807.0: 'NL: Labour Party', 52808.0: 'NL: Christian Union', 52809.0: 'NL: Party for the Animals', 52810.0: 'NL: 50Plus', 52811.0: 'NL: Reformed Political Party', 52812.0: 'NL: Denk', 52813.0: 'NL: Forum for Democracy', 52814.0: 'NL: Other, please specify (WRITE IN)', 52866.0: 'NL: No [no other] party appeals to me (spontaneous)', 57801.0: ' NO: Labour Party', 57802.0: ' NO: Democrats in Norway', 57803.0: ' NO: Progress Party', 57804.0: ' NO: Conservative Party', 57805.0: ' NO: Christian Democratic Party', 57806.0: ' NO: Coastal Party', 57807.0: ' NO: Green Party', 57808.0: ' NO: The Christians', 57809.0: \" NO: Pensioners' Party\", 57810.0: ' NO: Red Party', 57811.0: ' NO: Centre Party', 57812.0: ' NO: Socialist Left Party', 57813.0: ' NO: Liberal Party', 57814.0: ' NO: Other, please specify (WRITE IN)', 57866.0: ' NO: No party appeals to me (spontanious)', 61601.0: 'PL: Law and Justice', 61602.0: \"PL: Citizens' Platform\", 61603.0: \"PL: Kukiz'15\", 61604.0: 'PL: Modern', 61605.0: \"PL: Polish Peasants' Party\", 61606.0: 'PL: Democratic Left Alliance', 61607.0: 'PL: Liberty (Korwin)', 61608.0: 'PL: Together Party', 61609.0: 'PL: Other, please specify (WRITE IN)', 61666.0: 'PL: No (no other) party appeals to me', 62001.0: ' PT: Alternative Socialist Movement', 62002.0: ' PT: Left Block', 62003.0: ' PT: Portuguese Communist Party', 62004.0: ' PT: FREE', 62005.0: ' PT: Communist Party of Portuguese Workers/Reorganizing Movement of the Portuguese Proletariat', 62006.0: ' PT: Popular Monarchic Party', 62007.0: ' PT: Socialist Party', 62008.0: ' PT: People–Animals–Nature', 62009.0: ' PT: Social Democratic Party', 62010.0: ' PT: Social Democratic Centre - Popular Party', 62011.0: ' PT: Enough', 62012.0: ' PT: Together for the People', 62013.0: ' PT: Liberal Initiative', 62014.0: ' PT: We, the Citizens', 62015.0: ' PT: National Renewal Party (PNR)', 62016.0: ' PT: Democratic Republican Party', 62017.0: ' PT: Workers Party of Socialist Unity', 62018.0: ' PT: Liberal Democratic Party', 62019.0: ' PT: United Party of Retirees and Pensionists', 62020.0: ' PT: Alliance', 62021.0: ' PT: Citizenship and Christian Democracy', 62022.0: ' PT: Portuguese Labour Party (PTP)', 62023.0: ' PT: Earth Party', 62024.0: ' PT: Other', 62066.0: ' PT: No party appeals to me (spontaneous)', 64201.0: ' RO: The Social-Democratic Party', 64202.0: ' RO: National Liberal Party', 64203.0: \" RO: 'Save Romania' Union\", 64204.0: ' RO: Democratic Union of Hungarians from Romania', 64205.0: ' RO: Great Romania Party', 64206.0: \" RO: 'Aliance of Liberals and Democrats' Party\", 64207.0: ' RO: Popular Movement Party', 64226.0: ' RO: Other, please specify (WRITE IN)', 64266.0: ' RO: No [no other] party appeals to me', 64301.0: 'RU: Rodina', 64302.0: 'RU: Communists of Russia', 64303.0: 'RU: Russian Party of Pensioners for Social Justice', 64304.0: 'RU: United Russia', 64305.0: 'RU: Greens', 64306.0: 'RU: Civic platform', 64307.0: 'RU: Liberal Democratic Party of Russia (LDPR)', 64308.0: \"RU: People's Freedom Party (PARNAS)\", 64309.0: 'RU: Party of Growth', 64310.0: \"RU: Citizens' Force (Civilian power)\", 64311.0: 'RU: Yabloko', 64312.0: 'RU: Communist Party of Russian Federation (CPRF)', 64313.0: 'RU: Patriots of Russia', 64314.0: 'RU: Just Russia', 64326.0: 'RU: Other, please specify (WRITE IN)', 64366.0: 'RU: No [no other] party appeals to me (spontaneous)', 68801.0: ' RS: Serbian Progressive Party (SNS)', 68802.0: ' RS: Democratic Party (DS)', 68803.0: ' RS: Movement of Free Citizens (PSG)', 68804.0: \" RS: People's Party (NS)\", 68805.0: ' RS: Democratic Party of Serbia (DSS)', 68806.0: ' RS: Serbian Radical Party (SRS)', 68807.0: ' RS: Social Democratic Party (SDS)', 68808.0: ' RS: New Party (NS)', 68809.0: ' RS: Liberal Democratic Party (LDP)', 68810.0: ' RS: Socialist Party of Serbia (SPS)', 68811.0: ' RS: Dveri', 68812.0: \" RS: It's enough (DJB)\", 68813.0: ' RS: Party of United Pensioners of Serbia (PUPS)', 68814.0: ' RS: United Serbia (JS)', 68815.0: ' RS: Alliance of Vojvodina Hungarians (SVM)', 68816.0: ' RS: League of Social Democrats of Vojvodina (LSV)', 68817.0: ' RS: Party for Democratic Action (PDD)', 68818.0: ' RS: Roma Party (RP)', 68819.0: ' RS: Party for Democratic Action (SDA)', 68820.0: ' RS: Social Democratic Party of Serbia (SDPS)', 68821.0: ' RS: Democratic League of Croats in Vojvodina (DSHV)', 68831.0: ' RS: Other, please specify (WRITE IN)', 68866.0: ' RS: No [no other] party appeals to me', 70301.0: 'SK: Communist Party of Slovakia', 70302.0: \"SK: Kotleba - People's Party Our Slovakia\", 70303.0: 'SK: Christian Democratic Movement', 70304.0: 'SK: MOST - HÍD', 70305.0: 'SK: Ordinary People and Independent Personalities', 70306.0: 'SK: NETWORK', 70307.0: 'SK: Freedom and Solidarity', 70308.0: 'SK: Slovak National Party', 70309.0: 'SK: We Are Family - Boris Kollár', 70310.0: 'SK: DIRECTION - Social Democracy', 70311.0: 'SK: The Party of the Hungarian Community', 70312.0: 'SK: Slovak Green Party', 70313.0: 'SK:Other, please specify (WRITE IN)', 70366.0: 'SK: No [no other] party appeals to me (spontaneous)', 70501.0: ' SI: SMC - Party of Modern Center', 70502.0: ' SI: SDS - Slovenian democratic party', 70503.0: ' SI: DESUS - Democratic party of slovenian pensioners', 70504.0: ' SI: SD - Social democrats', 70505.0: ' SI: ZL - United Left', 70506.0: \" SI: NSi - New Slovenia - Christian people's party\", 70507.0: ' SI: ZAAB - Alliance of Alenka Bratusek', 70508.0: \" SI: SLS - Slovene people's party\", 70509.0: ' SI: PS - Positive Slovenia', 70510.0: ' SI: SNS - Slovenian national party', 70511.0: 'SI: Other, please specify (WRITE IN)', 70566.0: 'SI: No [no other] party appeals to me (spontaneous)', 72401.0: \"ES: Spanish Workers' Socialist Party\", 72402.0: 'ES: Popular Party', 72403.0: 'ES: United Left', 72404.0: 'ES: Initiative For Catalonia', 72405.0: 'ES: We Can', 72406.0: 'ES: We can together', 72407.0: 'ES: In Tide', 72408.0: 'ES: Compromise', 72409.0: 'ES: Citizens', 72410.0: 'ES: Catalan Democratic Party', 72411.0: 'ES: Republican Party of Catalonia', 72412.0: 'ES: Basque Nationalist Party', 72413.0: 'ES: Basque Country United', 72414.0: 'ES: Union of Navarrese People', 72415.0: 'ES: Yes to the Future', 72416.0: 'ES: Canary Coalition', 72417.0: 'ES: New Canary Islands', 72418.0: 'ES: Galician Nationalist Block', 72419.0: 'ES: Aragonese Assembly', 72420.0: 'ES: Aragonese Party', 72421.0: 'ES: Asturias Forum', 72426.0: 'ES: Other', 72466.0: 'ES: No [no other] party appeals to me (spontaneous)', 75201.0: ' SE: Social democratic party', 75202.0: ' SE: Moderate party', 75203.0: ' SE: Sweden democrats', 75204.0: ' SE: Center party', 75205.0: ' SE: Liberals', 75206.0: ' SE: Left wing party', 75207.0: ' SE: Green party', 75208.0: ' SE: Christian Democratic Party', 75231.0: ' SE: Other, please specify (WRITE IN)', 75266.0: ' SE: No [no other] party appeals to me (spontaneous)', 75601.0: 'CH: The Liberals (Merge from Radicals and Liberals)', 75602.0: 'CH: Christian Democratic Party', 75603.0: 'CH: Social Democratic Party (socialist)', 75604.0: \"CH: Swiss People's Party\", 75605.0: 'CH: Conservative Democratic Party', 75606.0: 'CH: Movement of the Citizens of French-speaking Switzerland', 75607.0: 'CH: Swiss Labour Party', 75608.0: 'CH: Green Party', 75609.0: 'CH: Green Liberal Party', 75610.0: 'CH: Pirate Party', 75611.0: 'CH: Federal Democratic Union', 75612.0: \"CH: Evangelical People's Party\", 75613.0: 'CH: Ticino League', 75614.0: 'CH: The alternative Left', 75626.0: 'CH:Other, please specify (WRITE IN)', 75666.0: 'CH: No (no other) party appeals to me', 80401.0: ' UA: Party «Sluha narodu»', 80402.0: ' UA: Party «Opozytsiina platforma – Za zhyttia»', 80403.0: ' UA: All-Ukrainian association «Batkivshchyna»', 80404.0: ' UA: Party «Yevropeiska solidarnist»', 80405.0: ' UA: Party «Holos»', 80406.0: ' UA: Oleh Liashko’s Radical party', 80407.0: ' UA: Party «Syla i chest»', 80408.0: ' UA: Partiia «Opozytsiinyi blok»', 80409.0: ' UA: Party «Hroisman’s Ukrainian Strategy»', 80410.0: ' UA: Shariy’s Party', 80411.0: ' UA: All-Ukrainian association «Svoboda»', 80412.0: ' UA: Other, please specify (WRITE IN)', 80466.0: ' UA: No party appeals to me (spontaneous)', 80701.0: 'MK: IMRO - DPMNU Internal Macedonian Revolutionary Organization - Democratic Party for Macedonian National Unity', 80702.0: 'MK: Civil Option For Macedonia', 80703.0: 'MK: Movement Besa', 80704.0: 'MK: Democratic Renewal of Macedonia', 80705.0: 'MK: DPA (Democratic Party of Albanians)', 80706.0: 'MK: DPSM (Democratic Party of Serbs in Macedonia)', 80707.0: 'MK: DPTM (Democratic Party of Turcs In Macedonia)', 80708.0: 'MK: DUI (Democratic Unioun for Integration)', 80709.0: 'MK: “Alliance of Albanians” Coalition (DR-ADP, UNITETI, NDP)', 80710.0: 'MK: LDP (Liberal Democratic Party)', 80711.0: 'MK: NSDP (New Social-Democratic Party)', 80712.0: 'MK: PDT (Party for Movement of the Turks in Macedonia)', 80713.0: 'MK: PEF (Party for European Future)', 80714.0: 'MK: POPGM (Party of United Pensioners and Citizens of Macedonia)', 80715.0: 'MK: RAM (Roma Aliance of Macedonia)', 80716.0: 'MK: SDAM (Social-Democratic Aliance of Macedonia)', 80717.0: 'MK: SPM (Socialistic Party of Macedonia)', 80718.0: 'MK: SPM (Serbian Party of Macedonia)', 80719.0: 'MK: Levica', 80731.0: 'MK: Other, please specify (WRITE IN):', 80766.0: 'MK: No (other) party appeals to me (spontaneous)', 82601.0: ' GB: Conservative', 82602.0: ' GB: Labour', 82603.0: ' GB: Liberal Democrat', 82604.0: ' GB: Scottish National Party', 82605.0: ' GB: Plaid Cymru', 82606.0: ' GB: Green Party', 82607.0: ' GB: UK Independence Party (UKIP)', 82608.0: ' GB: British National Party (BNP)/ National Front', 82609.0: ' GB: Other party (WRITE IN)', 82666.0: ' GB: No [no other] party appeals to me (spontaneous)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True47229508
v175_LR244v175_LRnominalpolitical party: another appeals to you: left/right scale (Q49a){1.0: 'left', 2.0: '', 3.0: '', 4.0: '', 5.0: '', 6.0: '', 7.0: '', 8.0: '', 9.0: '', 10.0: 'right', 44.0: 'not classifiable'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True2300411
v175_cs245v175_csnumericis there another party that appeals to you (Q49a) (ISO 3166-1, country-specific){801.0: ' AL: Democratic Party, PD', 802.0: ' AL: Socialist Party', 803.0: ' AL: Socialist Movement for Integration', 804.0: ' AL: The Human Rights Union Party', 805.0: ' AL: Christian Democrats', 806.0: ' AL: Republican Party', 807.0: ' AL: Social Democracy Party', 808.0: ' AL: Movement of Legality Party', 809.0: ' AL: National Front Party', 810.0: ' AL: New Democrat Party', 811.0: ' AL: Justice, Integration and Unity Party', 812.0: ' AL: Challenge for Albania', 813.0: ' AL: Social Democratic Party', 814.0: ' AL: Environmental Party', 815.0: ' AL: Albanian Democratic Union Party', 816.0: ' AL: Liberal Democratic Union Party', 817.0: ' AL: Agrarian Environmentalist Party', 818.0: \" AL: Albanian Workers' Party\", 819.0: ' AL: Communist Party of Albania', 820.0: \" AL: The People's Alliance Party\", 821.0: ' AL: Equal List, LIBRA', 822.0: ' AL: Green Party', 823.0: ' AL: Albanian Republican Union Party', 824.0: ' AL: Moderate Socialist Party', 825.0: ' AL: Party of People with Disabilities', 826.0: ' AL: Other, please specify (WRITE IN)', 866.0: ' AL: No [no other] party appeals to me', 877.0: ' AL: not applicable', 888.0: ' AL: don’t know (spontaneous)', 899.0: ' AL: no answer (spontaneous)', 3101.0: ' AZ: New Azerbaijan Party', 3102.0: ' AZ: Musavat/Equality Party', 3103.0: ' AZ: Azerbaijan Democratic Party', 3104.0: ' AZ: Popular Front Party', 3105.0: ' AZ: National Independence Party', 3106.0: ' AZ: Azerbaijan Liberal Party', 3107.0: ' AZ: Social-Democratic Party', 3108.0: ' AZ: Communist Party', 3109.0: ' AZ: Justice Party', 3110.0: ' AZ: Civic Solidarity Party', 3111.0: ' AZ: Motherland Party', 3112.0: ' AZ: Azerbaijan Party of Hope', 3113.0: ' AZ: Social Prosperity Party', 3114.0: ' AZ: Azerbaijan Party of Democratic Reform', 3115.0: ' AZ: Whole Azerbaijan Popular Front Party', 3116.0: ' AZ: Great Order Party', 3117.0: ' AZ: United Communist Party', 3118.0: ' AZ: Party of Unity', 3119.0: ' AZ: Modern Musavat Party', 3131.0: ' AZ: Other, please specify (WRITE IN)', 3166.0: ' AZ: No [, no other] party appeals to me (spontaneous)', 4001.0: 'AT: Social Democratic Party of Austria - SPÖ', 4002.0: \"AT: List Kurz / Austrian People's Party - ÖVP\", 4003.0: 'AT: Freedom Party of Austria - FPÖ', 4004.0: 'AT: The Greens - The Green Alternative', 4005.0: 'AT: The new Austria - NEOS', 4006.0: 'AT: List Peter Pilz', 4026.0: 'AT: Other, please specify (WRITE IN)', 4066.0: 'AT: No [no other] party appeals to me (spontaneous)', 5101.0: 'AM: Armenian Revolutionary Federation', 5102.0: 'AM: Armenian Communist Party', 5103.0: \"AM: 'Exit' (Way out) Party Union\", 5104.0: 'AM: Free Democrats Party', 5105.0: 'AM: Democratic Party of Armenia', 5106.0: 'AM: Heritage Party', 5107.0: 'AM: Armenian National Congress (former All-Armenian Movement)', 5108.0: 'AM: People’s Party of Armenia', 5109.0: 'AM: Tsarukyan Block (Prosperous Armenia Party)', 5110.0: 'AM: Republican Party of Armenia', 5111.0: \"AM: 'Apricot`s country' Party\", 5112.0: 'AM: Armenian Renaissance Party (Former Rule of Law)', 5126.0: 'AM: Other, please specify (WRITE IN)', 5166.0: 'AM: No [no other] party appeals to me (spontaneous)', 7001.0: 'BA: Bosnian Party', 7002.0: 'BA: Democratic Front', 7003.0: 'BA: Croatian Democratic Union - 1990', 7004.0: 'BA: Croatian Democratic Union', 7005.0: 'BA: Croatian republican party', 7006.0: 'BA: Croatian Party of Rights', 7007.0: 'BA: Liberal Democratic Party', 7008.0: 'BA: People and Justice', 7009.0: 'BA: Our Party', 7010.0: 'BA: Party of Democratic Progress', 7011.0: 'BA: Movement of Democratic Action', 7012.0: 'BA: The Alliance of Independent Social Democrats', 7013.0: 'BA: Union for a better future of BiH', 7014.0: 'BA: Social-Democratic Party', 7015.0: 'BA: Serbian Democratic Party', 7016.0: \"BA: Democratic People's Alliance\", 7017.0: 'BA: Party of Democratic Action', 7018.0: 'BA: National Democratic Movement', 7019.0: 'BA: Independent Bloc', 7031.0: 'BA: Other, please specify (WRITE IN)', 7066.0: 'BA: No [,no other] party appeals to me', 10001.0: 'BG: Citizens for European Development of Bulgaria', 10002.0: 'BG: Bulgarian Socialist Party (BSP)', 10003.0: 'BG: Movement for Rights and Freedoms (MRF)', 10004.0: 'BG: Attack', 10005.0: 'BG: Union of Democratic Forces', 10006.0: 'BG: Democrats for a Strong Bulgaria', 10007.0: 'BG: VMRO – Bulgarian National Movement', 10008.0: 'BG: Political Party VOLYA', 10009.0: 'BG: Alternative for Bulgarian Revival', 10010.0: 'BG: Movement 21', 10011.0: 'BG: DOST Democrats for Responsibility, Freedom, Tolerance', 10012.0: 'BG: Movement Bulgaria of the Citizens', 10013.0: 'BG: Party The Greens', 10014.0: 'BG: Yes, Bulgaria', 10015.0: 'BG: National Front for the Salvation of Bulgaria', 10026.0: 'BG: Other, please specify (WRITE IN)', 10066.0: 'BG: No [no other] party appeals to me (spontaneous)', 11201.0: 'BY: Liberal Democratic Party', 11202.0: 'BY: Belarusian Social Sports Party', 11203.0: 'BY: Belarusian Party “The Greens” (“Zyalyoniya”)', 11204.0: 'BY: Social-Democratic Party of Peoples Concord (Narodnai Zgody)', 11205.0: 'BY: Belarusian Agrarian Party', 11206.0: 'BY: Republican Party', 11207.0: 'BY: Conservative Christian Party – BNF', 11208.0: 'BY: Party BNF', 11209.0: 'BY: Republican Party of Labor and Justice', 11210.0: \"BY: Belarusian Party of the Left 'Fair World'\", 11211.0: 'BY: United Civic Party', 11212.0: 'BY: Belarusian Patriotic Party', 11213.0: 'BY: Party “Belarusian Social-Democratic Assembly” (Hramada)', 11214.0: 'BY: Belarusian Social-Democratic Party (Assembly) (Hramada)', 11215.0: 'BY: Communist Party of Belarus', 11216.0: 'BY: Supporters of the political policy of the President of the Republic of Belarus A.G.\\xa0Lukashenko', 11226.0: 'BY: Other, please specify (WRITE IN)', 11266.0: 'BY: No [,no other] party appeals to me (spontaneous)', 19101.0: 'HR: Bandić Milan 365', 19102.0: 'HR: Croatian democratic union', 19103.0: \"HR: Croatian people's party\", 19104.0: 'HR: Croatian peasant party', 19105.0: 'HR: Croatian social liberal party', 19106.0: 'HR: Croatian party of rights', 19107.0: 'HR: Croatian party of pensioners', 19108.0: 'HR: Croatian democratic alliance of Slavonia and Baranja', 19109.0: 'HR: Istrian democratic assembly', 19110.0: 'HR: Smart', 19111.0: 'HR: Gorski-Kotar alliance', 19112.0: 'HR: Independent democratic Serbian party', 19113.0: 'HR: Bridge of Independent Lists', 19114.0: 'HR: Social democratic party of Croatia', 19115.0: 'HR: Human shield', 19126.0: 'HR: Other, please specify (WRITE IN)', 19166.0: 'HR: No [, no other] party appeals to me (spontaneous)', 20301.0: 'CZ: ANO', 20302.0: 'CZ: ČSSD (Czech Social Democratic Party)', 20303.0: 'CZ: KSČM (Communist Party of Bohemia and Moravia)', 20304.0: 'CZ: ODS (Civic Democratic Party)', 20305.0: 'CZ: KDU-ČSL (Christian Democratic Party - Czechoslovak Peoples´Party)', 20306.0: 'CZ: TOP 09', 20307.0: 'CZ: Piráti (Pirates)', 20308.0: 'CZ: SPD (Freedom and Direct Democracy- Tomio Okamura)', 20309.0: 'CZ: SZ (Green Party)', 20310.0: 'CZ: STAN (Mayors and Independents)', 20311.0: 'CZ: Úsvit-NK (Dawn- National Coalition)', 20312.0: 'CZ: Svobodní (Party of Free Citizens)', 20313.0: 'CZ: SPO (Party for the Rights of Citizens)', 20314.0: 'CZ: Realisté (Realists)', 20315.0: 'CZ: DSSS (Worker´s Party of Social Justice)', 20316.0: 'CZ: Other', 20366.0: 'CZ: No [no other] party appeals to me (spontaneous)', 20801.0: ' DK: The Social Democrats', 20802.0: ' DK: Danish Social Liberal Party', 20803.0: ' DK: Conservative Peoples Party', 20804.0: ' DK: Socialist Peoples Party', 20805.0: ' DK: Danish Peoples Party', 20806.0: ' DK: The New Right', 20807.0: ' DK: Venstre, Denmarks Liberal Party', 20808.0: ' DK: Liberal Alliance', 20809.0: ' DK: Red-Green Alliance', 20810.0: ' DK: The Alternative', 20811.0: ' DK: Blank vote', 20866.0: ' DK: No [no other] party appeals to me', 23301.0: 'EE: Estonian Centre Party', 23302.0: 'EE: Estonian Reform Party', 23303.0: 'EE: Social Democratic Party', 23304.0: 'EE: Union of Pro Patria and Res Publica', 23305.0: 'EE: Estonian Greens', 23306.0: 'EE: Estonian Conseravative Peoples party', 23307.0: 'EE: Estonian Free Party', 23331.0: 'EE: Other, please specify (WRITE IN)', 23366.0: 'EE: No [no other] party appeals to me (spontaneous)', 24601.0: ' FI: Center party', 24602.0: ' FI: National Coalition Party', 24603.0: ' FI: Social democratic party', 24604.0: ' FI: Left alliance', 24605.0: ' FI: Green league', 24606.0: ' FI: Christian democrats', 24607.0: \" FI: Swedish People's Party in Finland\", 24608.0: ' FI: Finns Party', 24609.0: ' FI: Other, please specify (WRITE IN)', 24666.0: ' FI: No [no other] party appeals to me', 25001.0: \" FR: Left Wing Extremist Parties (New Anticapitalist Party, Workers' Struggle, Independent Workers' Party)\", 25002.0: ' FR: Unsubmissive France', 25003.0: ' FR: Communist Party', 25004.0: ' FR: Socialist Party', 25005.0: \" FR: Other Left Wing Parties (Radical Leftist Party, Republicain's and Citizen's Movement\", 25006.0: ' FR: Europe Ecology – The Greens', 25007.0: ' FR: Other Environmentalist Parties', 25008.0: ' FR: The Republic Onwards', 25009.0: ' FR: Democratic Movement', 25010.0: ' FR: Union of Democrats and Independents', 25011.0: ' FR: Act – The constructive right', 25012.0: ' FR: The Republicans', 25013.0: ' FR: France Arise', 25014.0: ' FR: National Front', 25015.0: ' FR: Other Right Wing Extremist Parties (The Patriots, National Republican Movement)', 25026.0: ' FR: Other, please specify (WRITE IN)', 25066.0: ' FR: No [no other] party appeals to me (spontaneous)', 26801.0: 'GE: United National Movement', 26802.0: 'GE: Georgian Labor Party', 26803.0: 'GE: New Rightists Party', 26804.0: 'GE: Republican Party of Georgia', 26805.0: 'GE: Industry Will Save Georgia', 26806.0: 'GE: United Democratic Movement', 26807.0: 'GE: Alliance of Patriots of Georgia', 26808.0: 'GE: European Georgia', 26809.0: 'GE: Free Democrats', 26810.0: 'GE: Georgian Dream - Democratic Georgia', 26811.0: 'GE: National Forum', 26812.0: 'GE: State for the People', 26813.0: 'GE: New Political Center Girchi', 26814.0: 'GE: New Georgia', 26815.0: 'GE: Development Party', 26826.0: 'GE: Other', 26866.0: 'GE: No [no other] party appeals to me (spontaneous)', 27601.0: 'DE: Christian Democratic Party/Christian Social Union', 27602.0: 'DE: German Social-Democratic Party', 27603.0: 'DE: German Liberal Party', 27604.0: 'DE: The Green Party', 27605.0: 'DE: The Left', 27606.0: 'DE: Alternative for Germany', 27607.0: 'DE: Other, please specify (WRITE IN)', 27666.0: 'DE: No [no other] party appeals to me (spontaneous)', 34801.0: 'HU: Hungarian Socialist Party (MSZP)', 34802.0: 'HU: Fidesz', 34803.0: \"HU: Christian Democratic People's Party (KDNP)\", 34804.0: 'HU: Movement for a Better Hungary (Jobbik)', 34805.0: 'HU: Politics Can Be Different (LMP)', 34806.0: 'HU: Democratic Coalition (DK)', 34807.0: 'HU: Together – Party for a New Era (Együtt)', 34808.0: 'HU: Dialogue for Hungary (PM)', 34809.0: 'HU: Momentum Movement (Momentum)', 34810.0: 'HU: Hungarian Liberal Party (Liberálisok)', 34811.0: 'HU: Hungarian Two-tailed Dog Party (MKKP)', 34812.0: \"HU: Hungarian Workers' Party (Munkáspárt)\", 34826.0: 'HU: Other, please specify (WRITE IN)', 34866.0: 'HU: No [no other] party appeals to me (spontaneous)', 35201.0: 'IS: The Independence Party', 35202.0: 'IS: The Progressive Party', 35203.0: 'IS: The Social Democratic Alliance', 35204.0: 'IS: The\\xa0Left-Green Movement\\xa0', 35205.0: 'IS: Bright Future', 35206.0: 'IS: Pirate Party', 35207.0: 'IS: Reform Party', 35208.0: 'IS: Dawn - The organization of justice, fairness and democracy', 35209.0: \"IS: The People's Front of Iceland\", 35210.0: 'IS: The\\xa0Icelandic National Front', 35211.0: \"IS: The People's Party\\xa0\", 35212.0: 'IS: The Humanist Party', 35216.0: 'IS: Centre Party', 35226.0: 'IS: Other, please specify (WRITE IN)', 35266.0: 'IS: No (no other) party appeals to me', 38001.0: ' IT: Communist Party', 38002.0: ' IT: Power to the People!', 38003.0: ' IT: Free and Equal', 38004.0: ' IT: Italy Europe Together', 38005.0: ' IT: Democratic Party', 38006.0: ' IT: More Europe', 38007.0: ' IT: Popular Civic Lorenzin', 38008.0: ' IT: SVP - PATT', 38009.0: ' IT: Five Star Movement', 38010.0: ' IT: Us with Italy - UDC (Union of the Centre)', 38011.0: ' IT: The People of the Family', 38012.0: ' IT: Go Italy', 38013.0: ' IT: League', 38014.0: ' IT: Brothers of Italy with Giorgia Meloni', 38015.0: ' IT: CasaPound Italy', 38016.0: ' IT: Italy to the Italians', 38031.0: ' IT: Other, please specify (WRITE IN)', 38066.0: ' IT: No [no other] party appeals to me (spontaneous)', 42801.0: ' LV: Harmony', 42802.0: ' LV: KPV LV', 42803.0: ' LV: New Conservative Party', 42804.0: ' LV: Development/For!', 42805.0: ' LV: National Alliance', 42806.0: ' LV: Union of Greens and Farmers', 42807.0: ' LV: New Unity', 42808.0: ' LV: Latvian Association of Regions', 42809.0: ' LV: Russian Union', 42810.0: ' LV: Progressives', 42816.0: ' LV: Other, please specify (WRITE IN)', 42866.0: ' LV: No party appeals to me (spontaneous)', 44001.0: ' LT: Labour Party', 44002.0: ' LT: Lithuanian Centre Party', 44003.0: ' LT: Lithuanian Freedom Union (Liberals)', 44004.0: ' LT: Electoral Action of Poles – Christian Families Aliance', 44005.0: ' LT: Liberal Union of Lithuanian Republic', 44006.0: ' LT: Lithuanian Social Democratic Party', 44007.0: ' LT: Lithuanian Farmers and Greens Union', 44008.0: \" LT: Party 'Order and Justice'\", 44009.0: \" LT: Political Party 'List of Lithuania'\", 44010.0: ' LT: Homeland Union: Lithuanian Christian Democrats', 44011.0: ' LT: Lithuanian Green Party', 44012.0: ' LT: Other, please specify (WRITE IN)', 44066.0: ' LT: No [, no other] party appeals to me', 49901.0: ' ME: Democratic party of socialists', 49902.0: ' ME: Socialdemocratic party', 49903.0: ' ME: Socialdemocrats of Montenegro', 49904.0: \" ME: Socialist people's party\", 49905.0: ' ME: Democratic front', 49906.0: ' ME: Positive Montenegro', 49907.0: ' ME: Liberal party of Montenegro', 49908.0: ' ME: DEMOS', 49909.0: ' ME: United Montenegro', 49910.0: ' ME: Democratic Montenegro', 49911.0: ' ME: United reform action', 49912.0: ' ME: Montenegrin (party)', 49913.0: \" ME: Bosniak's party\", 49914.0: ' ME: Democratic alliance in Montenegro', 49915.0: ' ME: Democratic union of of Albanians', 49916.0: ' ME: Albanian Alternative', 49917.0: ' ME: FORCA', 49918.0: ' ME: Croatian civic initiative', 49919.0: ' ME: True Montenegro', 49926.0: ' ME: Other, please specify (WRITE IN)', 49966.0: ' ME: No [, no other] party appeals to me', 52801.0: \"NL: People's Party for Freedom and Democracy\", 52802.0: 'NL: Party for Freedom', 52803.0: 'NL: Christian Democratic Appeal', 52804.0: 'NL: Democrats 66', 52805.0: 'NL: GreenLeft', 52806.0: 'NL: Socialist Party', 52807.0: 'NL: Labour Party', 52808.0: 'NL: Christian Union', 52809.0: 'NL: Party for the Animals', 52810.0: 'NL: 50Plus', 52811.0: 'NL: Reformed Political Party', 52812.0: 'NL: Denk', 52813.0: 'NL: Forum for Democracy', 52814.0: 'NL: Other, please specify (WRITE IN)', 52866.0: 'NL: No [no other] party appeals to me (spontaneous)', 57801.0: ' NO: Labour Party', 57802.0: ' NO: Democrats in Norway', 57803.0: ' NO: Progress Party', 57804.0: ' NO: Conservative Party', 57805.0: ' NO: Christian Democratic Party', 57806.0: ' NO: Coastal Party', 57807.0: ' NO: Green Party', 57808.0: ' NO: The Christians', 57809.0: \" NO: Pensioners' Party\", 57810.0: ' NO: Red Party', 57811.0: ' NO: Centre Party', 57812.0: ' NO: Socialist Left Party', 57813.0: ' NO: Liberal Party', 57814.0: ' NO: Other, please specify (WRITE IN)', 57866.0: ' NO: No party appeals to me (spontanious)', 61601.0: 'PL: Law and Justice', 61602.0: \"PL: Citizens' Platform\", 61603.0: \"PL: Kukiz'15\", 61604.0: 'PL: Modern', 61605.0: \"PL: Polish Peasants' Party\", 61606.0: 'PL: Democratic Left Alliance', 61607.0: 'PL: Liberty (Korwin)', 61608.0: 'PL: Together Party', 61609.0: 'PL: Other, please specify (WRITE IN)', 61666.0: 'PL: No (no other) party appeals to me', 62001.0: ' PT: Alternative Socialist Movement', 62002.0: ' PT: Left Block', 62003.0: ' PT: Portuguese Communist Party', 62004.0: ' PT: FREE', 62005.0: ' PT: Communist Party of Portuguese Workers/Reorganizing Movement of the Portuguese Proletariat', 62006.0: ' PT: Popular Monarchic Party', 62007.0: ' PT: Socialist Party', 62008.0: ' PT: People–Animals–Nature', 62009.0: ' PT: Social Democratic Party', 62010.0: ' PT: Social Democratic Centre - Popular Party', 62011.0: ' PT: Enough', 62012.0: ' PT: Together for the People', 62013.0: ' PT: Liberal Initiative', 62014.0: ' PT: We, the Citizens', 62015.0: ' PT: National Renewal Party (PNR)', 62016.0: ' PT: Democratic Republican Party', 62017.0: ' PT: Workers Party of Socialist Unity', 62018.0: ' PT: Liberal Democratic Party', 62019.0: ' PT: United Party of Retirees and Pensionists', 62020.0: ' PT: Alliance', 62021.0: ' PT: Citizenship and Christian Democracy', 62022.0: ' PT: Portuguese Labour Party (PTP)', 62023.0: ' PT: Earth Party', 62024.0: ' PT: Other', 62066.0: ' PT: No party appeals to me (spontaneous)', 64201.0: ' RO: The Social-Democratic Party', 64202.0: ' RO: National Liberal Party', 64203.0: \" RO: 'Save Romania' Union\", 64204.0: ' RO: Democratic Union of Hungarians from Romania', 64205.0: ' RO: Great Romania Party', 64206.0: \" RO: 'Aliance of Liberals and Democrats' Party\", 64207.0: ' RO: Popular Movement Party', 64226.0: ' RO: Other, please specify (WRITE IN)', 64266.0: ' RO: No [no other] party appeals to me', 64301.0: 'RU: Rodina', 64302.0: 'RU: Communists of Russia', 64303.0: 'RU: Russian Party of Pensioners for Social Justice', 64304.0: 'RU: United Russia', 64305.0: 'RU: Greens', 64306.0: 'RU: Civic platform', 64307.0: 'RU: Liberal Democratic Party of Russia (LDPR)', 64308.0: \"RU: People's Freedom Party (PARNAS)\", 64309.0: 'RU: Party of Growth', 64310.0: \"RU: Citizens' Force (Civilian power)\", 64311.0: 'RU: Yabloko', 64312.0: 'RU: Communist Party of Russian Federation (CPRF)', 64313.0: 'RU: Patriots of Russia', 64314.0: 'RU: Just Russia', 64326.0: 'RU: Other, please specify (WRITE IN)', 64366.0: 'RU: No [no other] party appeals to me (spontaneous)', 68801.0: ' RS: Serbian Progressive Party (SNS)', 68802.0: ' RS: Democratic Party (DS)', 68803.0: ' RS: Movement of Free Citizens (PSG)', 68804.0: \" RS: People's Party (NS)\", 68805.0: ' RS: Democratic Party of Serbia (DSS)', 68806.0: ' RS: Serbian Radical Party (SRS)', 68807.0: ' RS: Social Democratic Party (SDS)', 68808.0: ' RS: New Party (NS)', 68809.0: ' RS: Liberal Democratic Party (LDP)', 68810.0: ' RS: Socialist Party of Serbia (SPS)', 68811.0: ' RS: Dveri', 68812.0: \" RS: It's enough (DJB)\", 68813.0: ' RS: Party of United Pensioners of Serbia (PUPS)', 68814.0: ' RS: United Serbia (JS)', 68815.0: ' RS: Alliance of Vojvodina Hungarians (SVM)', 68816.0: ' RS: League of Social Democrats of Vojvodina (LSV)', 68817.0: ' RS: Party for Democratic Action (PDD)', 68818.0: ' RS: Roma Party (RP)', 68819.0: ' RS: Party for Democratic Action (SDA)', 68820.0: ' RS: Social Democratic Party of Serbia (SDPS)', 68821.0: ' RS: Democratic League of Croats in Vojvodina (DSHV)', 68831.0: ' RS: Other, please specify (WRITE IN)', 68866.0: ' RS: No [no other] party appeals to me', 70301.0: 'SK: Communist Party of Slovakia', 70302.0: \"SK: Kotleba - People's Party Our Slovakia\", 70303.0: 'SK: Christian Democratic Movement', 70304.0: 'SK: MOST - HÍD', 70305.0: 'SK: Ordinary People and Independent Personalities', 70306.0: 'SK: NETWORK', 70307.0: 'SK: Freedom and Solidarity', 70308.0: 'SK: Slovak National Party', 70309.0: 'SK: We Are Family - Boris Kollár', 70310.0: 'SK: DIRECTION - Social Democracy', 70311.0: 'SK: The Party of the Hungarian Community', 70312.0: 'SK: Slovak Green Party', 70313.0: 'SK:Other, please specify (WRITE IN)', 70366.0: 'SK: No [no other] party appeals to me (spontaneous)', 70501.0: ' SI: SMC - Party of Modern Center', 70502.0: ' SI: SDS - Slovenian democratic party', 70503.0: ' SI: DESUS - Democratic party of slovenian pensioners', 70504.0: ' SI: SD - Social democrats', 70505.0: ' SI: ZL - United Left', 70506.0: \" SI: NSi - New Slovenia - Christian people's party\", 70507.0: ' SI: ZAAB - Alliance of Alenka Bratusek', 70508.0: \" SI: SLS - Slovene people's party\", 70509.0: ' SI: PS - Positive Slovenia', 70510.0: ' SI: SNS - Slovenian national party', 70511.0: 'SI: Other, please specify (WRITE IN)', 70566.0: 'SI: No [no other] party appeals to me (spontaneous)', 72401.0: \"ES: Spanish Workers' Socialist Party\", 72402.0: 'ES: Popular Party', 72403.0: 'ES: United Left', 72404.0: 'ES: Initiative For Catalonia', 72405.0: 'ES: We Can', 72406.0: 'ES: We can together', 72407.0: 'ES: In Tide', 72408.0: 'ES: Compromise', 72409.0: 'ES: Citizens', 72410.0: 'ES: Catalan Democratic Party', 72411.0: 'ES: Republican Party of Catalonia', 72412.0: 'ES: Basque Nationalist Party', 72413.0: 'ES: Basque Country United', 72414.0: 'ES: Union of Navarrese People', 72415.0: 'ES: Yes to the Future', 72416.0: 'ES: Canary Coalition', 72417.0: 'ES: New Canary Islands', 72418.0: 'ES: Galician Nationalist Block', 72419.0: 'ES: Aragonese Assembly', 72420.0: 'ES: Aragonese Party', 72421.0: 'ES: Asturias Forum', 72426.0: 'ES: Other', 72466.0: 'ES: No [no other] party appeals to me (spontaneous)', 75201.0: ' SE: Social democratic party', 75202.0: ' SE: Moderate party', 75203.0: ' SE: Sweden democrats', 75204.0: ' SE: Center party', 75205.0: ' SE: Liberals', 75206.0: ' SE: Left wing party', 75207.0: ' SE: Green party', 75208.0: ' SE: Christian Democratic Party', 75231.0: ' SE: Other, please specify (WRITE IN)', 75266.0: ' SE: No [no other] party appeals to me (spontaneous)', 75601.0: 'CH: The Liberals (Merge from Radicals and Liberals)', 75602.0: 'CH: Christian Democratic Party', 75603.0: 'CH: Social Democratic Party (socialist)', 75604.0: \"CH: Swiss People's Party\", 75605.0: 'CH: Conservative Democratic Party', 75606.0: 'CH: Movement of the Citizens of French-speaking Switzerland', 75607.0: 'CH: Swiss Labour Party', 75608.0: 'CH: Green Party', 75609.0: 'CH: Green Liberal Party', 75610.0: 'CH: Pirate Party', 75611.0: 'CH: Federal Democratic Union', 75612.0: \"CH: Evangelical People's Party\", 75613.0: 'CH: Ticino League', 75614.0: 'CH: The alternative Left', 75626.0: 'CH:Other, please specify (WRITE IN)', 75666.0: 'CH: No (no other) party appeals to me', 80401.0: ' UA: Party «Sluha narodu»', 80402.0: ' UA: Party «Opozytsiina platforma – Za zhyttia»', 80403.0: ' UA: All-Ukrainian association «Batkivshchyna»', 80404.0: ' UA: Party «Yevropeiska solidarnist»', 80405.0: ' UA: Party «Holos»', 80406.0: ' UA: Oleh Liashko’s Radical party', 80407.0: ' UA: Party «Syla i chest»', 80408.0: ' UA: Partiia «Opozytsiinyi blok»', 80409.0: ' UA: Party «Hroisman’s Ukrainian Strategy»', 80410.0: ' UA: Shariy’s Party', 80411.0: ' UA: All-Ukrainian association «Svoboda»', 80412.0: ' UA: Other, please specify (WRITE IN)', 80466.0: ' UA: No party appeals to me (spontaneous)', 80701.0: 'MK: IMRO - DPMNU Internal Macedonian Revolutionary Organization - Democratic Party for Macedonian National Unity', 80702.0: 'MK: Civil Option For Macedonia', 80703.0: 'MK: Movement Besa', 80704.0: 'MK: Democratic Renewal of Macedonia', 80705.0: 'MK: DPA (Democratic Party of Albanians)', 80706.0: 'MK: DPSM (Democratic Party of Serbs in Macedonia)', 80707.0: 'MK: DPTM (Democratic Party of Turcs In Macedonia)', 80708.0: 'MK: DUI (Democratic Unioun for Integration)', 80709.0: 'MK: “Alliance of Albanians” Coalition (DR-ADP, UNITETI, NDP)', 80710.0: 'MK: LDP (Liberal Democratic Party)', 80711.0: 'MK: NSDP (New Social-Democratic Party)', 80712.0: 'MK: PDT (Party for Movement of the Turks in Macedonia)', 80713.0: 'MK: PEF (Party for European Future)', 80714.0: 'MK: POPGM (Party of United Pensioners and Citizens of Macedonia)', 80715.0: 'MK: RAM (Roma Aliance of Macedonia)', 80716.0: 'MK: SDAM (Social-Democratic Aliance of Macedonia)', 80717.0: 'MK: SPM (Socialistic Party of Macedonia)', 80718.0: 'MK: SPM (Serbian Party of Macedonia)', 80719.0: 'MK: Levica', 80731.0: 'MK: Other, please specify (WRITE IN):', 80766.0: 'MK: No (other) party appeals to me (spontaneous)', 82601.0: ' GB: Conservative', 82602.0: ' GB: Labour', 82603.0: ' GB: Liberal Democrat', 82604.0: ' GB: Scottish National Party', 82605.0: ' GB: Plaid Cymru', 82606.0: ' GB: Green Party', 82607.0: ' GB: UK Independence Party (UKIP)', 82608.0: ' GB: British National Party (BNP)/ National Front', 82609.0: ' GB: Other party (WRITE IN)', 82666.0: ' GB: No [no other] party appeals to me (spontaneous)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True35218498
v176246v176numerichow often in country's elections: votes are counted fairly (Q50A){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True522704
v176_DK247v176_DKnumericDK MODIFIED (cat 4 dropped): how often in country's elections: votes are counted fairly (Q50A){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True16183
v177248v177numerichow often in country's elections: opposition candidates are prevented from running (Q50B){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True477404
v177_DK249v177_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: opposition candidates are prevented from running (Q50B){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True14693
v178250v178numerichow often in country's elections: TV news favors the governing party (Q50C){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True510814
v178_DK251v178_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: TV news favors the governing party (Q50C){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True14603
v179252v179numerichow often in country's elections: voters are bribed (Q50D){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True498974
v179_DK253v179_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: voters are bribed (Q50D){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True14733
v180254v180numerichow often in country's elections: journalists provide fair coverage of elections (Q50E){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True516854
v180_DK255v180_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: journalists provide fair coverage of elections (Q50E){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True15713
v181256v181numerichow often in country's elections: election officials are fair (Q50F){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True506644
v181_DK257v181_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: election officials are fair (Q50F){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True15513
v182258v182numerichow often in country's elections: rich people buy elections (Q50G){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True481264
v182_DK259v182_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: rich people buy elections (Q50G){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True14593
v183260v183numerichow often in country's elections: voters are threatened with violence at the polls (Q50H){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True493414
v183_DK261v183_DKnumericDK MODIFIED (cat. 4 dropped): how often in country's elections: voters are threatened with violence at the polls (Q50H){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True15343
v184262v184numericimmigrants: impact on the development of [your country] (Q51){1.0: 'very bad', 2.0: 'quite bad', 3.0: 'neither good, nor bad', 4.0: 'quite good', 5.0: 'very good'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True569585
v185263v185numericimmigrants take away jobs from [nationality] (Q52A){1.0: 'take away', 10.0: 'do not take away'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5738910
v186264v186numericimmigrants increase crime problems (Q52B){1.0: 'make it worse', 10.0: 'do not make it worse'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5667910
v187265v187numericimmigrants are a strain on welfare system (Q52C){1.0: 'are a strain', 10.0: 'are not a strain'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5657810
v188266v188numericbetter if immigrants maintain/not maintain own customs (Q52D){1.0: 'maintain distinct customs and traditions', 10.0: 'do not maintain distinct customs and traditions'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5570610
v189267v189numericimportant: to have been born in [country] (Q53A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588504
v190268v190numericimportant: to respect [country nationality] political institutions and laws (Q53B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588504
v191269v191numericimportant: to have [country nationality] ancestry (Q53C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587284
v192270v192numericimportant: to be able to speak [national language] (Q53D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590344
v193271v193numericimportant: to share [national] culture (Q53E){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588114
v194272v194numericimportant: to be born in Europe (Q54A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True577414
v195273v195numericimportant: to have European ancestry (Q54B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575624
v196274v196numericimportant: to be a Christian (Q54C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573024
v197275v197numericimportant: to share European culture (Q54D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True576144
v198276v198numericEuropean Union enlargement (Q55){1.0: 'should go further', 10.0: 'has gone too far'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5413910
v199277v199numericenvironment: giving part of income (Q56A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True576645
f199_IT278f199_ITnominalIT FLAG EXPERIMENT: (answer cat. modified) experimental condition items v199 to v203 (Q56){1.0: \"version 1 - d'accordo/contrario (agree/against)\", 2.0: \"version 2 - d'accordo/in disaccordo (agree/disagree)\"}{-4.0: 'item not included', -2.0: 'no answer', -1.0: 'dont know'}True22772
v200279v200numericenvironment: too difficult for me to do much (Q56B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580125
v201280v201numericenvironment: there are more important things to do (Q56C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580915
v202281v202numericenvironment: no point unless others do the same (Q56D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580425
v203282v203numericenvironment: environmental threats are exaggerated (Q56E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True563485
v204283v204numericprotecting environment vs. economic growth (Q57){1.0: 'protecting the environment priority, even if slower economic growth and loss of jobs', 2.0: 'economic growth and creating jobs priority, even if environment suffers'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 3.0: 'other answer (code if volunteered only!)'}True522242
v205284v205numericgovernment: public area under video surveillance (Q58A){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579234
v206285v206numericgovernment: monitor all information exchanged on the internet (Q58B){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570224
v207286v207numericgovernment: collect information about anyone without their knowledge (Q58C){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574704
v208287v208numerichow often do you follow politics: on television (Q59A){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591285
v209288v209numerichow often do you follow politics: on the radio (Q59B){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589245
v210289v210numerichow often do you follow politics: in the daily papers (Q59C){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589295
v211290v211numerichow often do you follow politics: on social media (Q59D){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586475
v212291v212numericare you concerned with: people neighbourhood (Q60A){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588835
v213292v213numericare you concerned with: people own region (Q60B){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587815
v214293v214numericare you concerned with: fellow countrymen (Q60C){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587045
v215294v215numericare you concerned with: Europeans (Q60D){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582125
v216295v216numericare you concerned with: humankind (Q60E){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581445
v217296v217numericare you concerned with: elderly people (Q61A){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590345
v218297v218numericare you concerned with: unemployed people (Q61B){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587975
v219298v219numericare you concerned with: immigrants (Q61C){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583795
v220299v220numericare you concerned with: sick and disabled (Q61D){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589125
v221300v221numericimportant: eliminating income inequalities (Q62A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573204
v221_DK301v221_DKnumericDK MODIFIED (cat. 4 dropped): important: eliminating income inequalities (Q62A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3843
v222302v222numericimportant: basic needs for all (Q62B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582474
v222_DK303v222_DKnumericDK MODIFIED (cat. 4 dropped): important: basic needs for all (Q62B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4003
v223304v223numericimportant: recognizing people on merits (Q62C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True578664
v223_DK305v223_DKnumericDK MODIFIED (cat. 4 dropped): important: recognizing people on merits (Q62C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3813
v224306v224numericimportant: protecting against terrorism (Q62D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582154
v224_DK307v224_DKnumericDK MODIFIED (cat. 4 dropped): important: protecting against terrorism (Q62D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4043
v225308v225numericsex respondent (Q63){1.0: 'male', 2.0: 'female'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True594122
v226309v226numericyear of birth respondent (Q64){1937.0: '1937 and before'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5911367
age310agenumericage: respondent (constructed) (Q64){82.0: '82 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5911365
age_r311age_rnominalage recoded (6 intervals) (Q64){1.0: '15-24 years', 2.0: '25-34 years', 3.0: '35-44 years', 4.0: '45-54 years', 5.0: '55-64 years', 6.0: '65 and more years'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591136
age_r2312age_r2nominalage recoded (3 intervals) (Q64){1.0: '15-29 years', 2.0: '30-49 years', 3.0: '50 and more years'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591133
age_r3313age_r3nominalage recoded (7 intervals) (Q64){1.0: '18-24 years', 2.0: '25-34 years', 3.0: '35-44 years', 4.0: '45-54 years', 5.0: '55-64 years', 6.0: '65-74 years', 7.0: '75 and more years'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591137
v227314v227numericrespondent born in [country] (Q65){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593672
v228b315v228bnominalrespondents country of birth (ISO 3166-1/3 alpha code) (Q66){'005': 'M49 code: South America', '011': 'M49 code: Western Africa', '013': 'M49 code: Central America', '014': 'M49 code: Eastern Africa', '015': 'M49 code: Northern Africa', '017': 'M49 code: Middle Africa', '018': 'M49 code: Southern Africa', '029': 'M49 code: Caribbean', '030': 'M49 code: Eastern Asia', '034': 'M49 code: Southern Asia', '035': 'M49 code: South-Eastern Asia', '039': 'M49 code: Southern Europe', '053': 'M49 code: Australia and New Zealand', '054': 'M49 code: Melanesia', '061': 'M49 code: Polynesia', '143': 'M49 code: Central Asia', '145': 'M49 code: Western Asia', '154': 'M49 code: Northern Europe', 'AD': 'Andorra', 'AE': 'United Arab Emirates', 'AF': 'Afghanistan', 'AG': 'Antigua and Barbuda', 'AI': 'Anguilla', 'AL': 'Albania', 'AM': 'Armenia', 'AO': 'Angola', 'AQ': 'Antarctica', 'AR': 'Argentina', 'AS': 'American Samoa', 'AT': 'Austria', 'AU': 'Australia', 'AW': 'Aruba', 'AX': 'Åland Islands', 'AZ': 'Azerbaijan', 'BA': 'Bosnia and Herzegovina', 'BB': 'Barbados', 'BD': 'Bangladesh', 'BE': 'Belgium', 'BF': 'Burkina Faso', 'BG': 'Bulgaria', 'BH': 'Bahrain', 'BI': 'Burundi', 'BJ': 'Benin', 'BL': 'Saint Barthélemy', 'BM': 'Bermuda', 'BN': 'Brunei Darussalam', 'BO': 'Bolivia (Plurinational State of)', 'BQ': 'Bonaire, Sint Eustatius and Saba', 'BR': 'Brazil', 'BS': 'Bahamas', 'BT': 'Bhutan', 'BV': 'Bouvet Island', 'BW': 'Botswana', 'BY': 'Belarus', 'BZ': 'Belize', 'CA': 'Canada', 'CC': 'Cocos (Keeling) Islands', 'CD': 'Congo (Democratic Republic of the)', 'CF': 'Central African Republic', 'CG': 'Congo', 'CH': 'Switzerland', 'CI': 'Côte d´Ivoire', 'CK': 'Cook Islands', 'CL': 'Chile', 'CM': 'Cameroon', 'CN': 'China', 'CO': 'Colombia', 'CR': 'Costa Rica', 'CSHH': 'Czechoslovakia (former country)', 'CSXX': 'Serbia and Montenegro (former country)', 'CU': 'Cuba', 'CV': 'Cabo Verde', 'CW': 'Curaçao', 'CX': 'Christmas Island', 'CY': 'Cyprus', 'CY-TCC': 'Northern Cyprus', 'CZ': 'Czechia', 'DDDE': 'German Democratic Republic (former country)', 'DE': 'Germany', 'DJ': 'Djibouti', 'DK': 'Denmark', 'DM': 'Dominica', 'DO': 'Dominican Republic', 'DZ': 'Algeria', 'EC': 'Ecuador', 'EE': 'Estonia', 'EG': 'Egypt', 'EH': 'Western Sahara', 'ER': 'Eritrea', 'ES': 'Spain', 'ET': 'Ethiopia', 'FI': 'Finland', 'FJ': 'Fiji', 'FK': 'Falkland Islands (Malvinas)', 'FM': 'Micronesia (Federated States of)', 'FO': 'Faroe Islands', 'FR': 'France', 'GA': 'Gabon', 'GB': 'United Kingdom of Great Britain and Northern Ireland', 'GD': 'Grenada', 'GE': 'Georgia', 'GF': 'French Guiana', 'GG': 'Guernsey', 'GH': 'Ghana', 'GI': 'Gibraltar', 'GL': 'Greenland', 'GM': 'Gambia', 'GN': 'Guinea', 'GP': 'Guadeloupe', 'GQ': 'Equatorial Guinea', 'GR': 'Greece', 'GS': 'South Georgia and the South Sandwich Islands', 'GT': 'Guatemala', 'GU': 'Guam', 'GW': 'Guinea-Bissau', 'GY': 'Guyana', 'HK': 'Hong Kong', 'HM': 'Heard Island and McDonald Islands', 'HN': 'Honduras', 'HR': 'Croatia', 'HT': 'Haiti', 'HU': 'Hungary', 'ID': 'Indonesia', 'IE': 'Ireland', 'IL': 'Israel', 'IM': 'Isle of Man', 'IN': 'India', 'IO': 'British Indian Ocean Territory', 'IQ': 'Iraq', 'IR': 'Iran (Islamic Republic of)', 'IS': 'Iceland', 'IT': 'Italy', 'JE': 'Jersey', 'JM': 'Jamaica', 'JO': 'Jordan', 'JP': 'Japan', 'KE': 'Kenya', 'KG': 'Kyrgyzstan', 'KH': 'Cambodia', 'KI': 'Kiribati', 'KM': 'Comoros', 'KN': 'Saint Kitts and Nevis', 'KP': 'Korea (Democratic People´s Republic of)', 'KR': 'Korea (Republic of)', 'KW': 'Kuwait', 'KY': 'Cayman Islands', 'KZ': 'Kazakhstan', 'LA': 'Lao People´s Democratic Republic', 'LB': 'Lebanon', 'LC': 'Saint Lucia', 'LI': 'Liechtenstein', 'LK': 'Sri Lanka', 'LR': 'Liberia', 'LS': 'Lesotho', 'LT': 'Lithuania', 'LU': 'Luxembourg', 'LV': 'Latvia', 'LY': 'Libya', 'MA': 'Morocco', 'MC': 'Monaco', 'MD': 'Moldova (Republic of)', 'ME': 'Montenegro', 'MF': 'Saint Martin (French part)', 'MG': 'Madagascar', 'MH': 'Marshall Islands', 'MK': 'North Macedonia', 'ML': 'Mali', 'MM': 'Myanmar', 'MN': 'Mongolia', 'MO': 'Macao', 'MP': 'Northern Mariana Islands', 'MQ': 'Martinique', 'MR': 'Mauritania', 'MS': 'Montserrat', 'MT': 'Malta', 'MU': 'Mauritius', 'MV': 'Maldives', 'MW': 'Malawi', 'MX': 'Mexico', 'MY': 'Malaysia', 'MZ': 'Mozambique', 'NA': 'Namibia', 'NC': 'New Caledonia', 'NE': 'Niger', 'NF': 'Norfolk Island', 'NG': 'Nigeria', 'NI': 'Nicaragua', 'NL': 'Netherlands', 'NO': 'Norway', 'NP': 'Nepal', 'NR': 'Nauru', 'NU': 'Niue', 'NZ': 'New Zealand', 'OM': 'Oman', 'PA': 'Panama', 'PE': 'Peru', 'PF': 'French Polynesia', 'PG': 'Papua New Guinea', 'PH': 'Philippines', 'PK': 'Pakistan', 'PL': 'Poland', 'PM': 'Saint Pierre and Miquelon', 'PN': 'Pitcairn', 'PR': 'Puerto Rico', 'PS': 'Palestine, State of', 'PT': 'Portugal', 'PW': 'Palau', 'PY': 'Paraguay', 'QA': 'Qatar', 'RE': 'Réunion', 'RO': 'Romania', 'RS': 'Serbia', 'RU': 'Russian Federation', 'RW': 'Rwanda', 'SA': 'Saudi Arabia', 'SB': 'Solomon Islands', 'SC': 'Seychelles', 'SD': 'Sudan', 'SE': 'Sweden', 'SG': 'Singapore', 'SH': 'Saint Helena, Ascension and Tristan da Cunha', 'SI': 'Slovenia', 'SJ': 'Svalbard and Jan Mayen', 'SK': 'Slovakia', 'SL': 'Sierra Leone', 'SM': 'San Marino', 'SN': 'Senegal', 'SO': 'Somalia', 'SR': 'Suriname', 'SS': 'South Sudan', 'ST': 'Sao Tome and Principe', 'SUHH': 'U.S.S.R. (former country)', 'SV': 'El Salvador', 'SX': 'Sint Maarten (Dutch part)', 'SY': 'Syrian Arab Republic', 'SZ': 'Swaziland', 'TC': 'Turks and Caicos Islands', 'TD': 'Chad', 'TF': 'French Southern Territories', 'TG': 'Togo', 'TH': 'Thailand', 'TJ': 'Tajikistan', 'TK': 'Tokelau', 'TL': 'Timor-Leste', 'TM': 'Turkmenistan', 'TN': 'Tunisia', 'TO': 'Tonga', 'TR': 'Turkey', 'TT': 'Trinidad and Tobago', 'TV': 'Tuvalu', 'TW': 'Taiwan, Province of China[a]', 'TZ': 'Tanzania, United Republic of', 'UA': 'Ukraine', 'UG': 'Uganda', 'UM': 'United States Minor Outlying Islands', 'US': 'United States of America', 'UY': 'Uruguay', 'UZ': 'Uzbekistan', 'VA': 'Holy See', 'VC': 'Saint Vincent and the Grenadines', 'VE': 'Venezuela (Bolivarian Republic of)', 'VG': 'Virgin Islands (British)', 'VI': 'Virgin Islands (U.S.)', 'VN': 'Viet Nam', 'VU': 'Vanuatu', 'WF': 'Wallis and Futuna', 'WS': 'Samoa', 'XK': 'Kosovo', 'XXX': 'Other', 'YE': 'Yemen', 'YT': 'Mayotte', 'YUCS': 'Yugoslavia (former country)', 'ZA': 'South Africa', 'ZM': 'Zambia', 'ZW': 'Zimbabwe'}{'-1': \"don't know/no answer\", '-3': 'not applicable', '-5': 'other missing'}True422194
v228b_r316v228b_rnominalrespondents country of birth (ISO 3166-1 numeric code) (Q66){4.0: ' Afghanistan', 5.0: 'M49 code: South America', 8.0: ' Albania', 10.0: ' Antarctica', 11.0: 'M49 code: Western Africa', 12.0: ' Algeria', 13.0: 'M49 code: Central America', 14.0: 'M49 code: Eastern Africa', 15.0: 'M49 code: Northern Africa', 16.0: ' American Samoa', 17.0: 'M49 code: Middle Africa', 18.0: 'M49 code: Southern Africa', 20.0: ' Andorra', 24.0: ' Angola', 28.0: ' Antigua and Barbuda', 29.0: 'M49 code: Caribbean', 30.0: 'M49 code: Eastern Asia', 31.0: ' Azerbaijan', 32.0: ' Argentina', 34.0: 'M49 code: Southern Asia', 35.0: 'M49 code: South-Eastern Asia', 36.0: ' Australia', 39.0: 'M49 code: Southern Europe', 40.0: ' Austria', 44.0: ' Bahamas', 48.0: ' Bahrain', 50.0: ' Bangladesh', 51.0: ' Armenia', 52.0: ' Barbados', 53.0: 'M49 code: Australia and New Zealand', 54.0: 'M49 code: Melanesia', 56.0: ' Belgium', 60.0: ' Bermuda', 61.0: 'M49 code: Polynesia', 64.0: ' Bhutan', 68.0: ' Bolivia, Plurinational State of', 70.0: ' Bosnia and Herzegovina', 72.0: ' Botswana', 74.0: ' Bouvet Island', 76.0: ' Brazil', 84.0: ' Belize', 86.0: ' British Indian Ocean Territory', 90.0: ' Solomon Islands', 92.0: ' Virgin Islands, British', 96.0: ' Brunei Darussalam', 100.0: ' Bulgaria', 104.0: ' Myanmar', 108.0: ' Burundi', 112.0: ' Belarus', 116.0: ' Cambodia', 120.0: ' Cameroon', 124.0: ' Canada', 132.0: ' Cabo Verde', 136.0: ' Cayman Islands', 140.0: ' Central African Republic', 143.0: 'M49 code: Central Asia', 144.0: ' Sri Lanka', 145.0: 'M49 code: Western Asia', 148.0: ' Chad', 152.0: ' Chile', 154.0: 'M49 code: Northern Europe', 156.0: ' China', 158.0: ' Taiwan, Province of China', 162.0: ' Christmas Island', 166.0: ' Cocos (Keeling) Islands', 170.0: ' Colombia', 174.0: ' Comoros', 175.0: ' Mayotte', 178.0: ' Congo', 180.0: ' Congo, the Democratic Republic of the', 184.0: ' Cook Islands', 188.0: ' Costa Rica', 191.0: ' Croatia', 192.0: ' Cuba', 196.0: ' Cyprus', 200.0: ' Czechoslovakia (former country)', 203.0: ' Czechia', 204.0: ' Benin', 208.0: ' Denmark', 212.0: ' Dominica', 214.0: ' Dominican Republic', 218.0: ' Ecuador', 222.0: ' El Salvador', 226.0: ' Equatorial Guinea', 231.0: ' Ethiopia', 232.0: ' Eritrea', 233.0: ' Estonia', 234.0: ' Faroe Islands', 238.0: ' Falkland Islands (Malvinas)', 239.0: ' South Georgia and the South Sandwich Islands', 242.0: ' Fiji', 246.0: ' Finland', 248.0: ' Åland Islands', 250.0: ' France', 254.0: ' French Guiana', 258.0: ' French Polynesia', 260.0: ' French Southern Territories', 262.0: ' Djibouti', 266.0: ' Gabon', 268.0: ' Georgia', 270.0: ' Gambia', 275.0: ' Palestine, State of', 276.0: ' Germany', 278.0: 'German Democratic Republic (former country)', 288.0: ' Ghana', 292.0: ' Gibraltar', 296.0: ' Kiribati', 300.0: ' Greece', 304.0: ' Greenland', 308.0: ' Grenada', 312.0: ' Guadeloupe', 316.0: ' Guam', 320.0: ' Guatemala', 324.0: ' Guinea', 328.0: ' Guyana', 332.0: ' Haiti', 334.0: ' Heard Island and McDonald Islands', 336.0: ' Holy See', 340.0: ' Honduras', 344.0: ' Hong Kong', 348.0: ' Hungary', 352.0: ' Iceland', 356.0: ' India', 360.0: ' Indonesia', 364.0: ' Iran, Islamic Republic of', 368.0: ' Iraq', 372.0: ' Ireland', 376.0: ' Israel', 380.0: ' Italy', 384.0: \" Côte d'Ivoire\", 388.0: ' Jamaica', 392.0: ' Japan', 398.0: ' Kazakhstan', 400.0: ' Jordan', 404.0: ' Kenya', 408.0: \" Korea, Democratic People's Republic of\", 410.0: ' Korea, Republic of', 414.0: ' Kuwait', 417.0: ' Kyrgyzstan', 418.0: \" Lao People's Democratic Republic\", 422.0: ' Lebanon', 426.0: ' Lesotho', 428.0: ' Latvia', 430.0: ' Liberia', 434.0: ' Libya', 438.0: ' Liechtenstein', 440.0: ' Lithuania', 442.0: ' Luxembourg', 446.0: ' Macao', 450.0: ' Madagascar', 454.0: ' Malawi', 458.0: ' Malaysia', 462.0: ' Maldives', 466.0: ' Mali', 470.0: ' Malta', 474.0: ' Martinique', 478.0: ' Mauritania', 480.0: ' Mauritius', 484.0: ' Mexico', 492.0: ' Monaco', 496.0: ' Mongolia', 498.0: ' Moldova, Republic of', 499.0: ' Montenegro', 500.0: ' Montserrat', 504.0: ' Morocco', 508.0: ' Mozambique', 512.0: ' Oman', 516.0: ' Namibia', 520.0: ' Nauru', 524.0: ' Nepal', 528.0: ' Netherlands', 531.0: ' Curaçao', 533.0: ' Aruba', 534.0: ' Sint Maarten (Dutch part)', 535.0: ' Bonaire, Sint Eustatius and Saba', 540.0: ' New Caledonia', 548.0: ' Vanuatu', 554.0: ' New Zealand', 558.0: ' Nicaragua', 562.0: ' Niger', 566.0: ' Nigeria', 570.0: ' Niue', 574.0: ' Norfolk Island', 578.0: ' Norway', 580.0: ' Northern Mariana Islands', 581.0: ' United States Minor Outlying Islands', 583.0: ' Micronesia, Federated States of', 584.0: ' Marshall Islands', 585.0: ' Palau', 586.0: ' Pakistan', 591.0: ' Panama', 598.0: ' Papua New Guinea', 600.0: ' Paraguay', 604.0: ' Peru', 608.0: ' Philippines', 612.0: ' Pitcairn', 616.0: ' Poland', 620.0: ' Portugal', 624.0: ' Guinea-Bissau', 626.0: ' Timor-Leste', 630.0: ' Puerto Rico', 634.0: ' Qatar', 638.0: ' Réunion', 642.0: ' Romania', 643.0: ' Russian Federation', 646.0: ' Rwanda', 652.0: ' Saint Barthélemy', 654.0: ' Saint Helena, Ascension and Tristan da Cunha', 659.0: ' Saint Kitts and Nevis', 660.0: ' Anguilla', 662.0: ' Saint Lucia', 663.0: ' Saint Martin (French part)', 666.0: ' Saint Pierre and Miquelon', 670.0: ' Saint Vincent and the Grenadines', 674.0: ' San Marino', 678.0: ' Sao Tome and Principe', 682.0: ' Saudi Arabia', 686.0: ' Senegal', 688.0: ' Serbia', 690.0: ' Seychelles', 694.0: ' Sierra Leone', 702.0: ' Singapore', 703.0: ' Slovak Republic', 704.0: ' Viet Nam', 705.0: ' Slovenia', 706.0: ' Somalia', 710.0: ' South Africa', 716.0: ' Zimbabwe', 724.0: ' Spain', 728.0: ' South Sudan', 729.0: ' Sudan', 732.0: ' Western Sahara', 740.0: ' Suriname', 744.0: ' Svalbard and Jan Mayen', 748.0: ' Swaziland', 752.0: ' Sweden', 756.0: ' Switzerland', 760.0: ' Syrian Arab Republic', 762.0: ' Tajikistan', 764.0: ' Thailand', 768.0: ' Togo', 772.0: ' Tokelau', 776.0: ' Tonga', 780.0: ' Trinidad and Tobago', 784.0: ' United Arab Emirates', 788.0: ' Tunisia', 792.0: ' Turkey', 795.0: ' Turkmenistan', 796.0: ' Turks and Caicos Islands', 798.0: ' Tuvalu', 800.0: ' Uganda', 804.0: ' Ukraine', 807.0: ' North Macedonia', 810.0: ' U.S.S.R. (former country)', 818.0: ' Egypt', 826.0: ' United Kingdom of Great Britain and Northern Ireland', 831.0: ' Guernsey', 832.0: ' Jersey', 833.0: ' Isle of Man', 834.0: ' Tanzania, United Republic of', 840.0: ' United States of America', 850.0: ' Virgin Islands, U.S.', 854.0: ' Burkina Faso', 858.0: ' Uruguay', 860.0: ' Uzbekistan', 862.0: ' Venezuela, Bolivarian Republic of', 876.0: ' Wallis and Futuna', 882.0: ' Samoa', 887.0: ' Yemen', 890.0: ' Yugoslavia (former country)', 891.0: 'Serbia and Montenegro (former country)', 894.0: ' Zambia', 915.0: ' Kosovo', 1111.0: ' Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'NaN', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True422094
v229317v229numericyear in which respondent came to live in [country] (Q67){1941.0: '1941 and before'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True411679
v230318v230numericfather born in [country] (Q68){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590422
v231b319v231bnominalfathers country of birth (ISO 3166-1/3 Alpha code) (Q69){'005': 'M49 code: South America', '011': 'M49 code: Western Africa', '013': 'M49 code: Central America', '014': 'M49 code: Eastern Africa', '015': 'M49 code: Northern Africa', '017': 'M49 code: Middle Africa', '018': 'M49 code: Southern Africa', '029': 'M49 code: Caribbean', '030': 'M49 code: Eastern Asia', '034': 'M49 code: Southern Asia', '035': 'M49 code: South-Eastern Asia', '039': 'M49 code: Southern Europe', '053': 'M49 code: Australia and New Zealand', '054': 'M49 code: Melanesia', '061': 'M49 code: Polynesia', '143': 'M49 code: Central Asia', '145': 'M49 code: Western Asia', '154': 'M49 code: Northern Europe', 'AD': 'Andorra', 'AE': 'United Arab Emirates', 'AF': 'Afghanistan', 'AG': 'Antigua and Barbuda', 'AI': 'Anguilla', 'AL': 'Albania', 'AM': 'Armenia', 'AO': 'Angola', 'AQ': 'Antarctica', 'AR': 'Argentina', 'AS': 'American Samoa', 'AT': 'Austria', 'AU': 'Australia', 'AW': 'Aruba', 'AX': 'Åland Islands', 'AZ': 'Azerbaijan', 'BA': 'Bosnia and Herzegovina', 'BB': 'Barbados', 'BD': 'Bangladesh', 'BE': 'Belgium', 'BF': 'Burkina Faso', 'BG': 'Bulgaria', 'BH': 'Bahrain', 'BI': 'Burundi', 'BJ': 'Benin', 'BL': 'Saint Barthélemy', 'BM': 'Bermuda', 'BN': 'Brunei Darussalam', 'BO': 'Bolivia (Plurinational State of)', 'BQ': 'Bonaire, Sint Eustatius and Saba', 'BR': 'Brazil', 'BS': 'Bahamas', 'BT': 'Bhutan', 'BV': 'Bouvet Island', 'BW': 'Botswana', 'BY': 'Belarus', 'BZ': 'Belize', 'CA': 'Canada', 'CC': 'Cocos (Keeling) Islands', 'CD': 'Congo (Democratic Republic of the)', 'CF': 'Central African Republic', 'CG': 'Congo', 'CH': 'Switzerland', 'CI': 'Côte d´Ivoire', 'CK': 'Cook Islands', 'CL': 'Chile', 'CM': 'Cameroon', 'CN': 'China', 'CO': 'Colombia', 'CR': 'Costa Rica', 'CSHH': 'Czechoslovakia (former country)', 'CSXX': 'Serbia and Montenegro (former country)', 'CU': 'Cuba', 'CV': 'Cabo Verde', 'CW': 'Curaçao', 'CX': 'Christmas Island', 'CY': 'Cyprus', 'CY-TCC': 'Northern Cyprus', 'CZ': 'Czechia', 'DDDE': 'German Democratic Republic (former country)', 'DE': 'Germany', 'DJ': 'Djibouti', 'DK': 'Denmark', 'DM': 'Dominica', 'DO': 'Dominican Republic', 'DZ': 'Algeria', 'EC': 'Ecuador', 'EE': 'Estonia', 'EG': 'Egypt', 'EH': 'Western Sahara', 'ER': 'Eritrea', 'ES': 'Spain', 'ET': 'Ethiopia', 'FI': 'Finland', 'FJ': 'Fiji', 'FK': 'Falkland Islands (Malvinas)', 'FM': 'Micronesia (Federated States of)', 'FO': 'Faroe Islands', 'FR': 'France', 'GA': 'Gabon', 'GB': 'United Kingdom of Great Britain and Northern Ireland', 'GD': 'Grenada', 'GE': 'Georgia', 'GF': 'French Guiana', 'GG': 'Guernsey', 'GH': 'Ghana', 'GI': 'Gibraltar', 'GL': 'Greenland', 'GM': 'Gambia', 'GN': 'Guinea', 'GP': 'Guadeloupe', 'GQ': 'Equatorial Guinea', 'GR': 'Greece', 'GS': 'South Georgia and the South Sandwich Islands', 'GT': 'Guatemala', 'GU': 'Guam', 'GW': 'Guinea-Bissau', 'GY': 'Guyana', 'HK': 'Hong Kong', 'HM': 'Heard Island and McDonald Islands', 'HN': 'Honduras', 'HR': 'Croatia', 'HT': 'Haiti', 'HU': 'Hungary', 'ID': 'Indonesia', 'IE': 'Ireland', 'IL': 'Israel', 'IM': 'Isle of Man', 'IN': 'India', 'IO': 'British Indian Ocean Territory', 'IQ': 'Iraq', 'IR': 'Iran (Islamic Republic of)', 'IS': 'Iceland', 'IT': 'Italy', 'JE': 'Jersey', 'JM': 'Jamaica', 'JO': 'Jordan', 'JP': 'Japan', 'KE': 'Kenya', 'KG': 'Kyrgyzstan', 'KH': 'Cambodia', 'KI': 'Kiribati', 'KM': 'Comoros', 'KN': 'Saint Kitts and Nevis', 'KP': 'Korea (Democratic People´s Republic of)', 'KR': 'Korea (Republic of)', 'KW': 'Kuwait', 'KY': 'Cayman Islands', 'KZ': 'Kazakhstan', 'LA': 'Lao People´s Democratic Republic', 'LB': 'Lebanon', 'LC': 'Saint Lucia', 'LI': 'Liechtenstein', 'LK': 'Sri Lanka', 'LR': 'Liberia', 'LS': 'Lesotho', 'LT': 'Lithuania', 'LU': 'Luxembourg', 'LV': 'Latvia', 'LY': 'Libya', 'MA': 'Morocco', 'MC': 'Monaco', 'MD': 'Moldova (Republic of)', 'ME': 'Montenegro', 'MF': 'Saint Martin (French part)', 'MG': 'Madagascar', 'MH': 'Marshall Islands', 'MK': 'North Macedonia', 'ML': 'Mali', 'MM': 'Myanmar', 'MN': 'Mongolia', 'MO': 'Macao', 'MP': 'Northern Mariana Islands', 'MQ': 'Martinique', 'MR': 'Mauritania', 'MS': 'Montserrat', 'MT': 'Malta', 'MU': 'Mauritius', 'MV': 'Maldives', 'MW': 'Malawi', 'MX': 'Mexico', 'MY': 'Malaysia', 'MZ': 'Mozambique', 'NA': 'Namibia', 'NC': 'New Caledonia', 'NE': 'Niger', 'NF': 'Norfolk Island', 'NG': 'Nigeria', 'NI': 'Nicaragua', 'NL': 'Netherlands', 'NO': 'Norway', 'NP': 'Nepal', 'NR': 'Nauru', 'NU': 'Niue', 'NZ': 'New Zealand', 'OM': 'Oman', 'PA': 'Panama', 'PE': 'Peru', 'PF': 'French Polynesia', 'PG': 'Papua New Guinea', 'PH': 'Philippines', 'PK': 'Pakistan', 'PL': 'Poland', 'PM': 'Saint Pierre and Miquelon', 'PN': 'Pitcairn', 'PR': 'Puerto Rico', 'PS': 'Palestine, State of', 'PT': 'Portugal', 'PW': 'Palau', 'PY': 'Paraguay', 'QA': 'Qatar', 'RE': 'Réunion', 'RO': 'Romania', 'RS': 'Serbia', 'RU': 'Russian Federation', 'RW': 'Rwanda', 'SA': 'Saudi Arabia', 'SB': 'Solomon Islands', 'SC': 'Seychelles', 'SD': 'Sudan', 'SE': 'Sweden', 'SG': 'Singapore', 'SH': 'Saint Helena, Ascension and Tristan da Cunha', 'SI': 'Slovenia', 'SJ': 'Svalbard and Jan Mayen', 'SK': 'Slovakia', 'SL': 'Sierra Leone', 'SM': 'San Marino', 'SN': 'Senegal', 'SO': 'Somalia', 'SR': 'Suriname', 'SS': 'South Sudan', 'ST': 'Sao Tome and Principe', 'SUHH': 'U.S.S.R. (former country)', 'SV': 'El Salvador', 'SX': 'Sint Maarten (Dutch part)', 'SY': 'Syrian Arab Republic', 'SZ': 'Swaziland', 'TC': 'Turks and Caicos Islands', 'TD': 'Chad', 'TF': 'French Southern Territories', 'TG': 'Togo', 'TH': 'Thailand', 'TJ': 'Tajikistan', 'TK': 'Tokelau', 'TL': 'Timor-Leste', 'TM': 'Turkmenistan', 'TN': 'Tunisia', 'TO': 'Tonga', 'TR': 'Turkey', 'TT': 'Trinidad and Tobago', 'TV': 'Tuvalu', 'TW': 'Taiwan, Province of China[a]', 'TZ': 'Tanzania, United Republic of', 'UA': 'Ukraine', 'UG': 'Uganda', 'UM': 'United States Minor Outlying Islands', 'US': 'United States of America', 'UY': 'Uruguay', 'UZ': 'Uzbekistan', 'VA': 'Holy See', 'VC': 'Saint Vincent and the Grenadines', 'VE': 'Venezuela (Bolivarian Republic of)', 'VG': 'Virgin Islands (British)', 'VI': 'Virgin Islands (U.S.)', 'VN': 'Viet Nam', 'VU': 'Vanuatu', 'WF': 'Wallis and Futuna', 'WS': 'Samoa', 'XK': 'Kosovo', 'XXX': 'Other', 'YE': 'Yemen', 'YT': 'Mayotte', 'YUCS': 'Yugoslavia (former country)', 'ZA': 'South Africa', 'ZM': 'Zambia', 'ZW': 'Zimbabwe'}{'-1': \"don't know/no answer\", '-3': 'not applicable', '-5': 'other missing'}True611796
v231b_r320v231b_rnominalfathers country of birth (ISO 3166-1 numeric code) (Q69){4.0: ' Afghanistan', 5.0: 'M49 code: South America', 8.0: ' Albania', 10.0: ' Antarctica', 11.0: 'M49 code: Western Africa', 12.0: ' Algeria', 13.0: 'M49 code: Central America', 14.0: 'M49 code: Eastern Africa', 15.0: 'M49 code: Northern Africa', 16.0: ' American Samoa', 17.0: 'M49 code: Middle Africa', 18.0: 'M49 code: Southern Africa', 20.0: ' Andorra', 24.0: ' Angola', 28.0: ' Antigua and Barbuda', 29.0: 'M49 code: Caribbean', 30.0: 'M49 code: Eastern Asia', 31.0: ' Azerbaijan', 32.0: ' Argentina', 34.0: 'M49 code: Southern Asia', 35.0: 'M49 code: South-Eastern Asia', 36.0: ' Australia', 39.0: 'M49 code: Southern Europe', 40.0: ' Austria', 44.0: ' Bahamas', 48.0: ' Bahrain', 50.0: ' Bangladesh', 51.0: ' Armenia', 52.0: ' Barbados', 53.0: 'M49 code: Australia and New Zealand', 54.0: 'M49 code: Melanesia', 56.0: ' Belgium', 60.0: ' Bermuda', 61.0: 'M49 code: Polynesia', 64.0: ' Bhutan', 68.0: ' Bolivia, Plurinational State of', 70.0: ' Bosnia and Herzegovina', 72.0: ' Botswana', 74.0: ' Bouvet Island', 76.0: ' Brazil', 84.0: ' Belize', 86.0: ' British Indian Ocean Territory', 90.0: ' Solomon Islands', 92.0: ' Virgin Islands, British', 96.0: ' Brunei Darussalam', 100.0: ' Bulgaria', 104.0: ' Myanmar', 108.0: ' Burundi', 112.0: ' Belarus', 116.0: ' Cambodia', 120.0: ' Cameroon', 124.0: ' Canada', 132.0: ' Cabo Verde', 136.0: ' Cayman Islands', 140.0: ' Central African Republic', 143.0: 'M49 code: Central Asia', 144.0: ' Sri Lanka', 145.0: 'M49 code: Western Asia', 148.0: ' Chad', 152.0: ' Chile', 154.0: 'M49 code: Northern Europe', 156.0: ' China', 158.0: ' Taiwan, Province of China', 162.0: ' Christmas Island', 166.0: ' Cocos (Keeling) Islands', 170.0: ' Colombia', 174.0: ' Comoros', 175.0: ' Mayotte', 178.0: ' Congo', 180.0: ' Congo, the Democratic Republic of the', 184.0: ' Cook Islands', 188.0: ' Costa Rica', 191.0: ' Croatia', 192.0: ' Cuba', 196.0: ' Cyprus', 200.0: ' Czechoslovakia (former country)', 203.0: ' Czechia', 204.0: ' Benin', 208.0: ' Denmark', 212.0: ' Dominica', 214.0: ' Dominican Republic', 218.0: ' Ecuador', 222.0: ' El Salvador', 226.0: ' Equatorial Guinea', 231.0: ' Ethiopia', 232.0: ' Eritrea', 233.0: ' Estonia', 234.0: ' Faroe Islands', 238.0: ' Falkland Islands (Malvinas)', 239.0: ' South Georgia and the South Sandwich Islands', 242.0: ' Fiji', 246.0: ' Finland', 248.0: ' Åland Islands', 250.0: ' France', 254.0: ' French Guiana', 258.0: ' French Polynesia', 260.0: ' French Southern Territories', 262.0: ' Djibouti', 266.0: ' Gabon', 268.0: ' Georgia', 270.0: ' Gambia', 275.0: ' Palestine, State of', 276.0: ' Germany', 278.0: 'German Democratic Republic (former country)', 288.0: ' Ghana', 292.0: ' Gibraltar', 296.0: ' Kiribati', 300.0: ' Greece', 304.0: ' Greenland', 308.0: ' Grenada', 312.0: ' Guadeloupe', 316.0: ' Guam', 320.0: ' Guatemala', 324.0: ' Guinea', 328.0: ' Guyana', 332.0: ' Haiti', 334.0: ' Heard Island and McDonald Islands', 336.0: ' Holy See', 340.0: ' Honduras', 344.0: ' Hong Kong', 348.0: ' Hungary', 352.0: ' Iceland', 356.0: ' India', 360.0: ' Indonesia', 364.0: ' Iran, Islamic Republic of', 368.0: ' Iraq', 372.0: ' Ireland', 376.0: ' Israel', 380.0: ' Italy', 384.0: \" Côte d'Ivoire\", 388.0: ' Jamaica', 392.0: ' Japan', 398.0: ' Kazakhstan', 400.0: ' Jordan', 404.0: ' Kenya', 408.0: \" Korea, Democratic People's Republic of\", 410.0: ' Korea, Republic of', 414.0: ' Kuwait', 417.0: ' Kyrgyzstan', 418.0: \" Lao People's Democratic Republic\", 422.0: ' Lebanon', 426.0: ' Lesotho', 428.0: ' Latvia', 430.0: ' Liberia', 434.0: ' Libya', 438.0: ' Liechtenstein', 440.0: ' Lithuania', 442.0: ' Luxembourg', 446.0: ' Macao', 450.0: ' Madagascar', 454.0: ' Malawi', 458.0: ' Malaysia', 462.0: ' Maldives', 466.0: ' Mali', 470.0: ' Malta', 474.0: ' Martinique', 478.0: ' Mauritania', 480.0: ' Mauritius', 484.0: ' Mexico', 492.0: ' Monaco', 496.0: ' Mongolia', 498.0: ' Moldova, Republic of', 499.0: ' Montenegro', 500.0: ' Montserrat', 504.0: ' Morocco', 508.0: ' Mozambique', 512.0: ' Oman', 516.0: ' Namibia', 520.0: ' Nauru', 524.0: ' Nepal', 528.0: ' Netherlands', 531.0: ' Curaçao', 533.0: ' Aruba', 534.0: ' Sint Maarten (Dutch part)', 535.0: ' Bonaire, Sint Eustatius and Saba', 540.0: ' New Caledonia', 548.0: ' Vanuatu', 554.0: ' New Zealand', 558.0: ' Nicaragua', 562.0: ' Niger', 566.0: ' Nigeria', 570.0: ' Niue', 574.0: ' Norfolk Island', 578.0: ' Norway', 580.0: ' Northern Mariana Islands', 581.0: ' United States Minor Outlying Islands', 583.0: ' Micronesia, Federated States of', 584.0: ' Marshall Islands', 585.0: ' Palau', 586.0: ' Pakistan', 591.0: ' Panama', 598.0: ' Papua New Guinea', 600.0: ' Paraguay', 604.0: ' Peru', 608.0: ' Philippines', 612.0: ' Pitcairn', 616.0: ' Poland', 620.0: ' Portugal', 624.0: ' Guinea-Bissau', 626.0: ' Timor-Leste', 630.0: ' Puerto Rico', 634.0: ' Qatar', 638.0: ' Réunion', 642.0: ' Romania', 643.0: ' Russian Federation', 646.0: ' Rwanda', 652.0: ' Saint Barthélemy', 654.0: ' Saint Helena, Ascension and Tristan da Cunha', 659.0: ' Saint Kitts and Nevis', 660.0: ' Anguilla', 662.0: ' Saint Lucia', 663.0: ' Saint Martin (French part)', 666.0: ' Saint Pierre and Miquelon', 670.0: ' Saint Vincent and the Grenadines', 674.0: ' San Marino', 678.0: ' Sao Tome and Principe', 682.0: ' Saudi Arabia', 686.0: ' Senegal', 688.0: ' Serbia', 690.0: ' Seychelles', 694.0: ' Sierra Leone', 702.0: ' Singapore', 703.0: ' Slovak Republic', 704.0: ' Viet Nam', 705.0: ' Slovenia', 706.0: ' Somalia', 710.0: ' South Africa', 716.0: ' Zimbabwe', 724.0: ' Spain', 728.0: ' South Sudan', 729.0: ' Sudan', 732.0: ' Western Sahara', 740.0: ' Suriname', 744.0: ' Svalbard and Jan Mayen', 748.0: ' Swaziland', 752.0: ' Sweden', 756.0: ' Switzerland', 760.0: ' Syrian Arab Republic', 762.0: ' Tajikistan', 764.0: ' Thailand', 768.0: ' Togo', 772.0: ' Tokelau', 776.0: ' Tonga', 780.0: ' Trinidad and Tobago', 784.0: ' United Arab Emirates', 788.0: ' Tunisia', 792.0: ' Turkey', 795.0: ' Turkmenistan', 796.0: ' Turks and Caicos Islands', 798.0: ' Tuvalu', 800.0: ' Uganda', 804.0: ' Ukraine', 807.0: ' North Macedonia', 810.0: ' U.S.S.R. (former country)', 818.0: ' Egypt', 826.0: ' United Kingdom of Great Britain and Northern Ireland', 831.0: ' Guernsey', 832.0: ' Jersey', 833.0: ' Isle of Man', 834.0: ' Tanzania, United Republic of', 840.0: ' United States of America', 850.0: ' Virgin Islands, U.S.', 854.0: ' Burkina Faso', 858.0: ' Uruguay', 860.0: ' Uzbekistan', 862.0: ' Venezuela, Bolivarian Republic of', 876.0: ' Wallis and Futuna', 882.0: ' Samoa', 887.0: ' Yemen', 890.0: ' Yugoslavia (former country)', 891.0: 'Serbia and Montenegro (former country)', 894.0: ' Zambia', 915.0: ' Kosovo', 1111.0: ' Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'NaN', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True611796
v232321v232numericmother born in [country] (Q70){1.0: 'yes', 2.0: 'no'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True592182
v233b322v233bnominalmothers country of birth (ISO 3166-1/3 Alpha code) (Q71){'005': 'M49 code: South America', '011': 'M49 code: Western Africa', '013': 'M49 code: Central America', '014': 'M49 code: Eastern Africa', '015': 'M49 code: Northern Africa', '017': 'M49 code: Middle Africa', '018': 'M49 code: Southern Africa', '029': 'M49 code: Caribbean', '030': 'M49 code: Eastern Asia', '034': 'M49 code: Southern Asia', '035': 'M49 code: South-Eastern Asia', '039': 'M49 code: Southern Europe', '053': 'M49 code: Australia and New Zealand', '054': 'M49 code: Melanesia', '061': 'M49 code: Polynesia', '143': 'M49 code: Central Asia', '145': 'M49 code: Western Asia', '154': 'M49 code: Northern Europe', 'AD': 'Andorra', 'AE': 'United Arab Emirates', 'AF': 'Afghanistan', 'AG': 'Antigua and Barbuda', 'AI': 'Anguilla', 'AL': 'Albania', 'AM': 'Armenia', 'AO': 'Angola', 'AQ': 'Antarctica', 'AR': 'Argentina', 'AS': 'American Samoa', 'AT': 'Austria', 'AU': 'Australia', 'AW': 'Aruba', 'AX': 'Åland Islands', 'AZ': 'Azerbaijan', 'BA': 'Bosnia and Herzegovina', 'BB': 'Barbados', 'BD': 'Bangladesh', 'BE': 'Belgium', 'BF': 'Burkina Faso', 'BG': 'Bulgaria', 'BH': 'Bahrain', 'BI': 'Burundi', 'BJ': 'Benin', 'BL': 'Saint Barthélemy', 'BM': 'Bermuda', 'BN': 'Brunei Darussalam', 'BO': 'Bolivia (Plurinational State of)', 'BQ': 'Bonaire, Sint Eustatius and Saba', 'BR': 'Brazil', 'BS': 'Bahamas', 'BT': 'Bhutan', 'BV': 'Bouvet Island', 'BW': 'Botswana', 'BY': 'Belarus', 'BZ': 'Belize', 'CA': 'Canada', 'CC': 'Cocos (Keeling) Islands', 'CD': 'Congo (Democratic Republic of the)', 'CF': 'Central African Republic', 'CG': 'Congo', 'CH': 'Switzerland', 'CI': 'Côte d´Ivoire', 'CK': 'Cook Islands', 'CL': 'Chile', 'CM': 'Cameroon', 'CN': 'China', 'CO': 'Colombia', 'CR': 'Costa Rica', 'CSHH': 'Czechoslovakia (former country)', 'CSXX': 'Serbia and Montenegro (former country)', 'CU': 'Cuba', 'CV': 'Cabo Verde', 'CW': 'Curaçao', 'CX': 'Christmas Island', 'CY': 'Cyprus', 'CY-TCC': 'Northern Cyprus', 'CZ': 'Czechia', 'DDDE': 'German Democratic Republic (former country)', 'DE': 'Germany', 'DJ': 'Djibouti', 'DK': 'Denmark', 'DM': 'Dominica', 'DO': 'Dominican Republic', 'DZ': 'Algeria', 'EC': 'Ecuador', 'EE': 'Estonia', 'EG': 'Egypt', 'EH': 'Western Sahara', 'ER': 'Eritrea', 'ES': 'Spain', 'ET': 'Ethiopia', 'FI': 'Finland', 'FJ': 'Fiji', 'FK': 'Falkland Islands (Malvinas)', 'FM': 'Micronesia (Federated States of)', 'FO': 'Faroe Islands', 'FR': 'France', 'GA': 'Gabon', 'GB': 'United Kingdom of Great Britain and Northern Ireland', 'GD': 'Grenada', 'GE': 'Georgia', 'GF': 'French Guiana', 'GG': 'Guernsey', 'GH': 'Ghana', 'GI': 'Gibraltar', 'GL': 'Greenland', 'GM': 'Gambia', 'GN': 'Guinea', 'GP': 'Guadeloupe', 'GQ': 'Equatorial Guinea', 'GR': 'Greece', 'GS': 'South Georgia and the South Sandwich Islands', 'GT': 'Guatemala', 'GU': 'Guam', 'GW': 'Guinea-Bissau', 'GY': 'Guyana', 'HK': 'Hong Kong', 'HM': 'Heard Island and McDonald Islands', 'HN': 'Honduras', 'HR': 'Croatia', 'HT': 'Haiti', 'HU': 'Hungary', 'ID': 'Indonesia', 'IE': 'Ireland', 'IL': 'Israel', 'IM': 'Isle of Man', 'IN': 'India', 'IO': 'British Indian Ocean Territory', 'IQ': 'Iraq', 'IR': 'Iran (Islamic Republic of)', 'IS': 'Iceland', 'IT': 'Italy', 'JE': 'Jersey', 'JM': 'Jamaica', 'JO': 'Jordan', 'JP': 'Japan', 'KE': 'Kenya', 'KG': 'Kyrgyzstan', 'KH': 'Cambodia', 'KI': 'Kiribati', 'KM': 'Comoros', 'KN': 'Saint Kitts and Nevis', 'KP': 'Korea (Democratic People´s Republic of)', 'KR': 'Korea (Republic of)', 'KW': 'Kuwait', 'KY': 'Cayman Islands', 'KZ': 'Kazakhstan', 'LA': 'Lao People´s Democratic Republic', 'LB': 'Lebanon', 'LC': 'Saint Lucia', 'LI': 'Liechtenstein', 'LK': 'Sri Lanka', 'LR': 'Liberia', 'LS': 'Lesotho', 'LT': 'Lithuania', 'LU': 'Luxembourg', 'LV': 'Latvia', 'LY': 'Libya', 'MA': 'Morocco', 'MC': 'Monaco', 'MD': 'Moldova (Republic of)', 'ME': 'Montenegro', 'MF': 'Saint Martin (French part)', 'MG': 'Madagascar', 'MH': 'Marshall Islands', 'MK': 'North Macedonia', 'ML': 'Mali', 'MM': 'Myanmar', 'MN': 'Mongolia', 'MO': 'Macao', 'MP': 'Northern Mariana Islands', 'MQ': 'Martinique', 'MR': 'Mauritania', 'MS': 'Montserrat', 'MT': 'Malta', 'MU': 'Mauritius', 'MV': 'Maldives', 'MW': 'Malawi', 'MX': 'Mexico', 'MY': 'Malaysia', 'MZ': 'Mozambique', 'NA': 'Namibia', 'NC': 'New Caledonia', 'NE': 'Niger', 'NF': 'Norfolk Island', 'NG': 'Nigeria', 'NI': 'Nicaragua', 'NL': 'Netherlands', 'NO': 'Norway', 'NP': 'Nepal', 'NR': 'Nauru', 'NU': 'Niue', 'NZ': 'New Zealand', 'OM': 'Oman', 'PA': 'Panama', 'PE': 'Peru', 'PF': 'French Polynesia', 'PG': 'Papua New Guinea', 'PH': 'Philippines', 'PK': 'Pakistan', 'PL': 'Poland', 'PM': 'Saint Pierre and Miquelon', 'PN': 'Pitcairn', 'PR': 'Puerto Rico', 'PS': 'Palestine, State of', 'PT': 'Portugal', 'PW': 'Palau', 'PY': 'Paraguay', 'QA': 'Qatar', 'RE': 'Réunion', 'RO': 'Romania', 'RS': 'Serbia', 'RU': 'Russian Federation', 'RW': 'Rwanda', 'SA': 'Saudi Arabia', 'SB': 'Solomon Islands', 'SC': 'Seychelles', 'SD': 'Sudan', 'SE': 'Sweden', 'SG': 'Singapore', 'SH': 'Saint Helena, Ascension and Tristan da Cunha', 'SI': 'Slovenia', 'SJ': 'Svalbard and Jan Mayen', 'SK': 'Slovakia', 'SL': 'Sierra Leone', 'SM': 'San Marino', 'SN': 'Senegal', 'SO': 'Somalia', 'SR': 'Suriname', 'SS': 'South Sudan', 'ST': 'Sao Tome and Principe', 'SUHH': 'U.S.S.R. (former country)', 'SV': 'El Salvador', 'SX': 'Sint Maarten (Dutch part)', 'SY': 'Syrian Arab Republic', 'SZ': 'Swaziland', 'TC': 'Turks and Caicos Islands', 'TD': 'Chad', 'TF': 'French Southern Territories', 'TG': 'Togo', 'TH': 'Thailand', 'TJ': 'Tajikistan', 'TK': 'Tokelau', 'TL': 'Timor-Leste', 'TM': 'Turkmenistan', 'TN': 'Tunisia', 'TO': 'Tonga', 'TR': 'Turkey', 'TT': 'Trinidad and Tobago', 'TV': 'Tuvalu', 'TW': 'Taiwan, Province of China[a]', 'TZ': 'Tanzania, United Republic of', 'UA': 'Ukraine', 'UG': 'Uganda', 'UM': 'United States Minor Outlying Islands', 'US': 'United States of America', 'UY': 'Uruguay', 'UZ': 'Uzbekistan', 'VA': 'Holy See', 'VC': 'Saint Vincent and the Grenadines', 'VE': 'Venezuela (Bolivarian Republic of)', 'VG': 'Virgin Islands (British)', 'VI': 'Virgin Islands (U.S.)', 'VN': 'Viet Nam', 'VU': 'Vanuatu', 'WF': 'Wallis and Futuna', 'WS': 'Samoa', 'XK': 'Kosovo', 'XXX': 'Other', 'YE': 'Yemen', 'YT': 'Mayotte', 'YUCS': 'Yugoslavia (former country)', 'ZA': 'South Africa', 'ZM': 'Zambia', 'ZW': 'Zimbabwe'}{'-1': \"don't know/no answer\", '-3': 'not applicable', '-5': 'other missing'}True612198
v233b_r323v233b_rnominalmothers country of birth (ISO 3166-1 numeric code) (Q69){4.0: ' Afghanistan', 5.0: 'M49 code: South America', 8.0: ' Albania', 10.0: ' Antarctica', 11.0: 'M49 code: Western Africa', 12.0: ' Algeria', 13.0: 'M49 code: Central America', 14.0: 'M49 code: Eastern Africa', 15.0: 'M49 code: Northern Africa', 16.0: ' American Samoa', 17.0: 'M49 code: Middle Africa', 18.0: 'M49 code: Southern Africa', 20.0: ' Andorra', 24.0: ' Angola', 28.0: ' Antigua and Barbuda', 29.0: 'M49 code: Caribbean', 30.0: 'M49 code: Eastern Asia', 31.0: ' Azerbaijan', 32.0: ' Argentina', 34.0: 'M49 code: Southern Asia', 35.0: 'M49 code: South-Eastern Asia', 36.0: ' Australia', 39.0: 'M49 code: Southern Europe', 40.0: ' Austria', 44.0: ' Bahamas', 48.0: ' Bahrain', 50.0: ' Bangladesh', 51.0: ' Armenia', 52.0: ' Barbados', 53.0: 'M49 code: Australia and New Zealand', 54.0: 'M49 code: Melanesia', 56.0: ' Belgium', 60.0: ' Bermuda', 61.0: 'M49 code: Polynesia', 64.0: ' Bhutan', 68.0: ' Bolivia, Plurinational State of', 70.0: ' Bosnia and Herzegovina', 72.0: ' Botswana', 74.0: ' Bouvet Island', 76.0: ' Brazil', 84.0: ' Belize', 86.0: ' British Indian Ocean Territory', 90.0: ' Solomon Islands', 92.0: ' Virgin Islands, British', 96.0: ' Brunei Darussalam', 100.0: ' Bulgaria', 104.0: ' Myanmar', 108.0: ' Burundi', 112.0: ' Belarus', 116.0: ' Cambodia', 120.0: ' Cameroon', 124.0: ' Canada', 132.0: ' Cabo Verde', 136.0: ' Cayman Islands', 140.0: ' Central African Republic', 143.0: 'M49 code: Central Asia', 144.0: ' Sri Lanka', 145.0: 'M49 code: Western Asia', 148.0: ' Chad', 152.0: ' Chile', 154.0: 'M49 code: Northern Europe', 156.0: ' China', 158.0: ' Taiwan, Province of China', 162.0: ' Christmas Island', 166.0: ' Cocos (Keeling) Islands', 170.0: ' Colombia', 174.0: ' Comoros', 175.0: ' Mayotte', 178.0: ' Congo', 180.0: ' Congo, the Democratic Republic of the', 184.0: ' Cook Islands', 188.0: ' Costa Rica', 191.0: ' Croatia', 192.0: ' Cuba', 196.0: ' Cyprus', 200.0: ' Czechoslovakia (former country)', 203.0: ' Czechia', 204.0: ' Benin', 208.0: ' Denmark', 212.0: ' Dominica', 214.0: ' Dominican Republic', 218.0: ' Ecuador', 222.0: ' El Salvador', 226.0: ' Equatorial Guinea', 231.0: ' Ethiopia', 232.0: ' Eritrea', 233.0: ' Estonia', 234.0: ' Faroe Islands', 238.0: ' Falkland Islands (Malvinas)', 239.0: ' South Georgia and the South Sandwich Islands', 242.0: ' Fiji', 246.0: ' Finland', 248.0: ' Åland Islands', 250.0: ' France', 254.0: ' French Guiana', 258.0: ' French Polynesia', 260.0: ' French Southern Territories', 262.0: ' Djibouti', 266.0: ' Gabon', 268.0: ' Georgia', 270.0: ' Gambia', 275.0: ' Palestine, State of', 276.0: ' Germany', 278.0: 'German Democratic Republic (former country)', 288.0: ' Ghana', 292.0: ' Gibraltar', 296.0: ' Kiribati', 300.0: ' Greece', 304.0: ' Greenland', 308.0: ' Grenada', 312.0: ' Guadeloupe', 316.0: ' Guam', 320.0: ' Guatemala', 324.0: ' Guinea', 328.0: ' Guyana', 332.0: ' Haiti', 334.0: ' Heard Island and McDonald Islands', 336.0: ' Holy See', 340.0: ' Honduras', 344.0: ' Hong Kong', 348.0: ' Hungary', 352.0: ' Iceland', 356.0: ' India', 360.0: ' Indonesia', 364.0: ' Iran, Islamic Republic of', 368.0: ' Iraq', 372.0: ' Ireland', 376.0: ' Israel', 380.0: ' Italy', 384.0: \" Côte d'Ivoire\", 388.0: ' Jamaica', 392.0: ' Japan', 398.0: ' Kazakhstan', 400.0: ' Jordan', 404.0: ' Kenya', 408.0: \" Korea, Democratic People's Republic of\", 410.0: ' Korea, Republic of', 414.0: ' Kuwait', 417.0: ' Kyrgyzstan', 418.0: \" Lao People's Democratic Republic\", 422.0: ' Lebanon', 426.0: ' Lesotho', 428.0: ' Latvia', 430.0: ' Liberia', 434.0: ' Libya', 438.0: ' Liechtenstein', 440.0: ' Lithuania', 442.0: ' Luxembourg', 446.0: ' Macao', 450.0: ' Madagascar', 454.0: ' Malawi', 458.0: ' Malaysia', 462.0: ' Maldives', 466.0: ' Mali', 470.0: ' Malta', 474.0: ' Martinique', 478.0: ' Mauritania', 480.0: ' Mauritius', 484.0: ' Mexico', 492.0: ' Monaco', 496.0: ' Mongolia', 498.0: ' Moldova, Republic of', 499.0: ' Montenegro', 500.0: ' Montserrat', 504.0: ' Morocco', 508.0: ' Mozambique', 512.0: ' Oman', 516.0: ' Namibia', 520.0: ' Nauru', 524.0: ' Nepal', 528.0: ' Netherlands', 531.0: ' Curaçao', 533.0: ' Aruba', 534.0: ' Sint Maarten (Dutch part)', 535.0: ' Bonaire, Sint Eustatius and Saba', 540.0: ' New Caledonia', 548.0: ' Vanuatu', 554.0: ' New Zealand', 558.0: ' Nicaragua', 562.0: ' Niger', 566.0: ' Nigeria', 570.0: ' Niue', 574.0: ' Norfolk Island', 578.0: ' Norway', 580.0: ' Northern Mariana Islands', 581.0: ' United States Minor Outlying Islands', 583.0: ' Micronesia, Federated States of', 584.0: ' Marshall Islands', 585.0: ' Palau', 586.0: ' Pakistan', 591.0: ' Panama', 598.0: ' Papua New Guinea', 600.0: ' Paraguay', 604.0: ' Peru', 608.0: ' Philippines', 612.0: ' Pitcairn', 616.0: ' Poland', 620.0: ' Portugal', 624.0: ' Guinea-Bissau', 626.0: ' Timor-Leste', 630.0: ' Puerto Rico', 634.0: ' Qatar', 638.0: ' Réunion', 642.0: ' Romania', 643.0: ' Russian Federation', 646.0: ' Rwanda', 652.0: ' Saint Barthélemy', 654.0: ' Saint Helena, Ascension and Tristan da Cunha', 659.0: ' Saint Kitts and Nevis', 660.0: ' Anguilla', 662.0: ' Saint Lucia', 663.0: ' Saint Martin (French part)', 666.0: ' Saint Pierre and Miquelon', 670.0: ' Saint Vincent and the Grenadines', 674.0: ' San Marino', 678.0: ' Sao Tome and Principe', 682.0: ' Saudi Arabia', 686.0: ' Senegal', 688.0: ' Serbia', 690.0: ' Seychelles', 694.0: ' Sierra Leone', 702.0: ' Singapore', 703.0: ' Slovak Republic', 704.0: ' Viet Nam', 705.0: ' Slovenia', 706.0: ' Somalia', 710.0: ' South Africa', 716.0: ' Zimbabwe', 724.0: ' Spain', 728.0: ' South Sudan', 729.0: ' Sudan', 732.0: ' Western Sahara', 740.0: ' Suriname', 744.0: ' Svalbard and Jan Mayen', 748.0: ' Swaziland', 752.0: ' Sweden', 756.0: ' Switzerland', 760.0: ' Syrian Arab Republic', 762.0: ' Tajikistan', 764.0: ' Thailand', 768.0: ' Togo', 772.0: ' Tokelau', 776.0: ' Tonga', 780.0: ' Trinidad and Tobago', 784.0: ' United Arab Emirates', 788.0: ' Tunisia', 792.0: ' Turkey', 795.0: ' Turkmenistan', 796.0: ' Turks and Caicos Islands', 798.0: ' Tuvalu', 800.0: ' Uganda', 804.0: ' Ukraine', 807.0: ' North Macedonia', 810.0: ' U.S.S.R. (former country)', 818.0: ' Egypt', 826.0: ' United Kingdom of Great Britain and Northern Ireland', 831.0: ' Guernsey', 832.0: ' Jersey', 833.0: ' Isle of Man', 834.0: ' Tanzania, United Republic of', 840.0: ' United States of America', 850.0: ' Virgin Islands, U.S.', 854.0: ' Burkina Faso', 858.0: ' Uruguay', 860.0: ' Uzbekistan', 862.0: ' Venezuela, Bolivarian Republic of', 876.0: ' Wallis and Futuna', 882.0: ' Samoa', 887.0: ' Yemen', 890.0: ' Yugoslavia (former country)', 891.0: 'Serbia and Montenegro (former country)', 894.0: ' Zambia', 915.0: ' Kosovo', 1111.0: ' Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'NaN', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True612198
v234324v234numericcurrent legal marital status respondent (Q72){1.0: 'married', 2.0: 'registered partnership', 3.0: 'widowed', 4.0: 'divorced', 5.0: 'separated', 6.0: 'never married and never registered partnership'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590206
v235325v235numericlived with partner before marriage (Q73){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True439872
v236326v236numericliving with partner (Q74){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True273012
v237327v237numerichaving steady relationship (Q75){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True198882
v238328v238numericdo you live with your parents/parents in law (Q76){1.0: 'no', 2.0: 'yes, own parent(s)', 3.0: 'yes, parent(s) in law', 4.0: 'yes, both own parent(s) and parent(s) in law'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590014
v239_r329v239_rnominalnumber of children in/outside HH (constructed) (Q77){0.0: 'no children', 5.0: '5 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False589526
v239a330v239anumericnumber of children in household (Q77A){4.0: '4 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580945
v239b331v239bnumericnumber of children outside household (Q77B){3.0: '3 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581144
v240332v240numericnumber of people in household (Q78){1.0: 'I live alone', 6.0: '6 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586916
v241333v241numericage of youngest person in household (Q79){80.0: '80 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4598381
v242334v242numericage completed education respondent (Q80){7.0: '7 and younger', 70.0: '70 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 0.0: 'no formal education'}True5583464
v242_r335v242_rnominalWhat age did you complete your education (recoded in intervals) (Q80){1.0: '<=12 years', 2.0: '13 years', 3.0: '14 years', 4.0: '15 years', 5.0: '16 years', 6.0: '17 years', 7.0: '18 years', 8.0: '19 years', 9.0: '20 years', 10.0: '21+ years'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 0.0: 'no formal education'}True5583410
v243_edulvlb336v243_edulvlbnominaleducational level respondent: ESS-edulvlb coding (Q81){0.0: 'Not completed ISCED 1', 113.0: 'Completed ISCED 1', 129.0: 'short vocational ISCED 2', 212.0: 'General/pre-vocational ISCED 2 with access to 32x', 213.0: 'General ISCED 2 with access to all ISCED 3', 221.0: 'Vocational ISCED 2 without access to ISCED 3', 222.0: 'Vocational ISCED 2 with access to 32x only', 223.0: 'Vocational ISCED 2 with access to all ISCED 3', 229.0: 'short vocational ISCED 3', 311.0: 'General ISCED 3 without access to tertiary', 312.0: 'General ISCED 3 with access to non-university tertiary only', 313.0: 'General ISCED 3 with access to university', 321.0: 'Vocational ISCED 3 without access to tertiary', 322.0: 'Vocational ISCED 3 with access to non-university tertiary only', 323.0: 'Vocational ISCED 3 with access to university', 412.0: 'General ISCED 4, with access to non-university tertiary only', 413.0: 'General ISCED 4 with access to all first degrees at ISCED 6/7', 421.0: 'Vocational ISCED 4 without access to tertiary', 422.0: 'Vocational ISCED 4, with access to non-university tertiary only', 423.0: 'Vocational ISCED 4, with access to university', 510.0: \"University qualification below bachelor's degree\", 520.0: \"Non-university qualification below bachelor's degree\", 610.0: \"Non-university bachelor's degree\", 620.0: \"University bachelor's degree\", 710.0: \"Non-university master's degree\", 720.0: \"University master's degree\", 800.0: 'Doctoral degree', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5904928
v243_edulvlb_2337v243_edulvlb_2nominaleducational level respondent: ESS-edulvlb coding two digits (Q81){0.0: 'Less than primary', 11.0: 'Primary: general education', 12.0: 'Primary: vocational programmes', 21.0: 'Lower secondary: general education', 22.0: 'Lower secondary: vocational programmes', 31.0: 'Upper secondary: general education', 32.0: 'Upper secondary: vocational programmes', 41.0: 'Post-secondary non tertiary: general education', 42.0: 'Post-secondary non tertiary: vocational programmes', 51.0: 'Short-cycle tertiary: general education', 52.0: 'Short-cycle tertiary: vocational programmes', 61.0: 'Bachelor or equivalent: general education', 62.0: 'Bachelor or equivalent: vocational programmes', 71.0: 'Master or equivalent: general education', 72.0: 'Master or equivalent: vocational programmes', 80.0: 'Doctoral or equivalent', 666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5904917
v243_edulvlb_1338v243_edulvlb_1nominaleducational level respondent: ESS-edulvlb coding one digit (Q81){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5904910
v243_ISCED_3339v243_ISCED_3numericeducational level respondent: ISCED-code three digit (Q81){0.0: 'Less than primary', 100.0: 'Primary', 244.0: 'General lower secondary with direct access to upper secondary', 253.0: 'Vocational lower secondary without direct access to upper secondary', 254.0: 'Vocational lower secondary with direct access to upper secondary', 343.0: 'General upper secondary without direct access to first tertiary programmes', 344.0: 'General upper secondary with direct access to first tertiary programmes', 353.0: 'Vocational upper secondary without direct access to first tertiary programmes', 354.0: 'Vocational upper secondary with direct access to first tertiary programmes', 444.0: 'General post-secondary non-tertiary with direct access to first tertiary programmes', 453.0: 'Vocational post-secondary non-tertiary without direct access to first tertiary programmes', 454.0: 'Vocational post-secondary non-tertiary with direct access to first tertiary programmes', 540.0: 'General short-cycle tertiary', 550.0: 'Vocational short-cycle tertiary', 640.0: 'Academic Bachelor’s or equivalent level', 650.0: 'Professional Bachelor’s or equivalent level', 740.0: 'Academic Master’s or equivalent level', 750.0: 'Professional Master’s or equivalent level', 800.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5904920
v243_ISCED_2340v243_ISCED_2numericeducational level respondent: ISCED-code two digit (Q81){0.0: 'Pre-primary education', 10.0: 'Primary education', 24.0: 'Lower secondary general education', 25.0: 'Lower secondary vocational education', 34.0: 'Upper secondary general education', 35.0: 'Upper secondary vocational education', 44.0: 'Post-secondary non-tertiary general education', 45.0: 'Post-secondary non-tertiary vocational education', 54.0: 'Short-cycle tertiary general education', 55.0: 'Short-cycle tertiary vocational education', 64.0: 'Bachelor’s or equivalent level, academic', 65.0: 'Bachelor’s or equivalent level, professional', 74.0: 'Master’s or equivalent level, academic', 75.0: 'Master’s or equivalent level, professional', 80.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5904916
v243_ISCED_2b341v243_ISCED_2bnominaleducational level respondent: ISCED-code two digit, second option (Q81){0.0: 'Less than primary', 10.0: 'Primary', 23.0: 'Lower secondary, no access to upper secondary education', 24.0: 'Lower secondary, access to upper secondary education', 33.0: 'Upper secondary, no access to upper secondary education', 34.0: 'Upper secondary, access to upper secondary education', 43.0: 'Post-secondary non-tertiary, no access to upper secondary education', 44.0: 'Post-secondary non-tertiary, access to upper secondary education', 50.0: 'Short-cycle tertiary education', 60.0: 'Bachelor’s or equivalent level', 70.0: 'Master or equivalent level', 80.0: 'Doctorate or equivalent level', 6666.0: 'Other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True5905013
v243_ISCED_1342v243_ISCED_1nominaleducational level respondent: ISCED‐code one digit (Q81){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5904910
v243_EISCED343v243_EISCEDnumericeducational level respondent: ES-ISCED coding (Q81){0.0: 'No formal or less than primary education', 1.0: 'I - Primary education', 2.0: 'II - Lower secondary (including vocational training that is not considered as completion of upper secondary education)', 3.0: 'IIIb - Upper secondary without access to higher education', 4.0: 'IIIa - Upper secondary with access to higher education', 5.0: 'IV - Post-secondary/advanced vocational education below bachelor’s degree level', 6.0: \"V1 - Bachelor's level\", 7.0: \"V2 - Master's and higher level\", 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590499
v243_ISCED97344v243_ISCED97numericeducational level respondent: ISCED97‐code one digit (Q81){0.0: ' 0 : Pre-primary education or none education', 1.0: ' 1 : Primary education or first stage of basic education', 2.0: ' 2 : Lower secondary or second stage of basic education', 3.0: ' 3 : (Upper) secondary education', 4.0: ' 4 : Post-secondary non-tertiary education', 5.0: ' 5 : First stage of tertiary education', 6.0: ' 6 : Second stage of tertiary education'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True590498
v243_8cat345v243_8catnumericeducational level respondent: 8 categories (Q81){1.0: ' Inadequately completed elementary education', 2.0: ' Completed (compulsory) elementary education', 3.0: ' Incomplete secondary school: technical/vocational type', 4.0: ' Complete secondary school: technical/vocational type/secondary', 5.0: ' Incomplete secondary: university-preparatory type/secondary', 6.0: ' Complete secondary: university-preparatory type/full secondary', 7.0: ' Some university without degree/higher education - lower-level tertiary', 8.0: ' University with degree/higher education - upper-level tertiary'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True590499
v243_r346v243_rnominaleducational level respondent: recoded (Q81){1.0: 'lower', 2.0: 'medium', 3.0: 'higher', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590504
v243_cs347v243_csnumericeducational level respondent: country-specific, ISO 3166-1 (Q81){801.0: ' AL: Without school', 802.0: ' AL: Primary education', 803.0: ' AL: Lower secondary (Leaving certificate)', 804.0: ' AL: Upper secondary general (Maturity diploma)', 805.0: ' AL: Upper secondary vocational (2 years, certificate of high technical or vocational education)', 806.0: ' AL: Upper secondary vocational (over 2 years, Maturity diplome)', 807.0: ' AL: Post-secondary non tertiary', 808.0: ' AL: University diploma/Bachelor', 809.0: ' AL: Vocational/Professional Master', 810.0: ' AL: Post-University', 811.0: ' AL: Master of Arts', 812.0: ' AL: Master of Science', 813.0: ' AL: Long term specialization', 814.0: ' AL: Doctoral Degree', 877.0: ' AL: not applicable', 888.0: ' AL: don’t know (spontaneous)', 899.0: ' AL: no answer (spontaneous)', 3101.0: ' AZ: None', 3102.0: ' AZ: Primary education (1-4 years)', 3103.0: ' AZ: Incomplete general secondary (5-8 grades)', 3104.0: ' AZ: General secondary education (9 grades)', 3105.0: ' AZ: Complete secondary education (11 grades)', 3106.0: ' AZ: Primary vocational-professional education (Vocational school/lyceum) (1-3 years)', 3107.0: ' AZ: Secondary special education (Technical school/College) (2-4 years)', 3108.0: ' AZ: Bachelor degree (4 years)', 3109.0: ' AZ: Master degree (2 years)', 3110.0: ' AZ: Science degree (former Aspirantura/PhD): Doctor of Philosophy, Doctor of Science', 3188.0: ' AZ: don’t know (spontaneous)', 3199.0: ' AZ: no answer (spontaneous)', 4001.0: 'AT: Not completed', 4002.0: 'AT: Completed primary education', 4003.0: 'AT: Completed Lower Secundary Education, New Secundary School', 4004.0: 'AT: Completed Polytechnic School, or one-year Middle School', 4005.0: 'AT: Completed Academic Secondary School (AHS), elementary level', 4006.0: 'AT: Completed apprenticeship (final apprenticeship examination)', 4007.0: 'AT: Completed Vocational Middle School (at least 2 years, e.g. commercial school, professional school)', 4008.0: 'AT: Completed Higher School Certificate (matriculation, general qualification for university entrance)', 4009.0: 'AT: Completed degree in health or nursing care', 4010.0: 'AT: Completed Higher School Certificate in Vocational Higher School', 4011.0: 'AT: Completed advanced vocational training', 4012.0: 'AT: Completed pedagoical/educational/medical degree', 4013.0: \"AT: Completed Bachelor's degree at a university of applied sciences\", 4014.0: \"AT: Completed Bachelor's degree at a university\", 4015.0: \"AT: Completed Master's degree at a university of applied sciences\", 4016.0: \"AT: Completed Master's degree at a university of applied sciences\", 4017.0: 'AT: Completed post-graduate university courses (e.g. MBA)', 4018.0: 'AT: Completed doctorate/PhD', 4019.0: 'AT: other', 5101.0: 'AM: Never went to school', 5102.0: 'AM: Less than 4 years of education', 5103.0: 'AM: 4 years of primary education', 5104.0: 'AM: Certificate of lower secondary/ basic secondary education, 9 years', 5105.0: 'AM: Certificate of initial vocational education after lower /basic education', 5106.0: 'AM: Advanced vocational education after lower /basic education', 5107.0: 'AM: Certificate of upper secondary education, 12 years', 5108.0: 'AM: Certificate of initial vocational training after upper secondary education', 5109.0: 'AM: Advanced vocational education after upper secondary education', 5110.0: 'AM: Bachelor degree 4 years', 5111.0: 'AM: Specialist degree', 5112.0: 'AM: Master degree 2 years', 5113.0: 'AM: Phd and habilitation', 7001.0: 'BA: No school (up to three grades of elementary school)', 7002.0: 'BA: Unfinished elementary school (4 to 7 grades)', 7003.0: 'BA: Completed elementary school', 7004.0: 'BA: Secondary vocational school up to 1-2 years', 7005.0: 'BA: Secondary vocational school up to 3 years', 7006.0: 'BA: Technical and related secondary vocational schools up to 4 years or more', 7007.0: 'BA: High school', 7008.0: 'BA: Professional study up to 2-3 years', 7009.0: \"BA: Undergraduate university study - for the academic title 'baccalaureus' (3-4 years); Art academy (undergraduate stud\", 7010.0: 'BA: Specialist graduate professional study (4-5 years); Specialist in the profession', 7011.0: 'BA: Graduate university study (4-6 years) - old program', 7012.0: \"BA: Master's degree (5 years); Art academy (graduate study)\", 7013.0: \"BA: Master's degree of Science or completed postgraduate specialist studies\", 7014.0: 'BA: Postgraduate Doctorate of Science', 10001.0: 'BG: Incomplete primary education', 10002.0: 'BG: Primary education', 10003.0: 'BG: Basic education', 10004.0: 'BG: Secondary general education', 10005.0: 'BG: Secondary special education Language Schools, Mathematics and Natural Science', 10006.0: 'BG: Secondary special education Arts and Sports', 10007.0: 'BG: Secondary vocational education', 10008.0: 'BG: Semi-higher education', 10009.0: 'BG: College - Professional bachelor', 10010.0: 'BG: Higher education - Bachelor', 10011.0: 'BG: Higher education - Master', 10012.0: 'BG: Doctor of science', 11201.0: 'BY: No education', 11202.0: 'BY: Primary school', 11203.0: 'BY: Certificate of lower secondary general education', 11204.0: 'BY: Certificate of upper general secondary education', 11205.0: 'BY: 1-2 year vocational education after lower secondary education', 11206.0: 'BY: Vocational training with upper secondary general training in parallel', 11207.0: 'BY: Certificate of upper vocational education with upper secondary general education', 11208.0: \"BY: Bachelor's Degree\", 11209.0: \"BY: Higher education, Specialist's Diploma\", 11210.0: \"BY: Master's degree\", 11211.0: 'BY: PhD', 11212.0: 'BY: Habilitation', 19101.0: 'HR: No school (up to three grades of elementary school)', 19102.0: 'HR: Unfinished elementary school (4 to 7 grades)', 19103.0: 'HR: Completed elementary school', 19104.0: 'HR: Secondary vocational school up to 1-2 years', 19105.0: 'HR: Secondary vocational school up to 3 years', 19106.0: 'HR: Technical and related secondary vocational schools up to 4 years or more', 19107.0: 'HR: High school', 19108.0: 'HR: Professional study up to 2-3 years', 19109.0: \"HR: Undergraduate university study; for academic title 'baccalaureus' (3-4 years); Art academy (undergraduate study)\", 19110.0: 'HR: Specialist graduate professional study (4-5 years); Specialist in the profession', 19111.0: 'HR: Graduate university study (4-6 years) - old program', 19112.0: \"HR: Master's degree (5 years); Art academy (graduate study)\", 19113.0: \"HR: Master's degree of Science or completed postgraduate specialist studies\", 19114.0: 'HR: Postgraduate Doctorate of Science', 20301.0: 'CZ Incomplete elementary education, unfinished 1st level (less than 5 grades/years)', 20302.0: 'CZ: Incomplete basic education (5+ years of schooling, only primary school completed, SZŠ, ZZŠ, general school)', 20303.0: 'CZ: Basic education (bougeois school)', 20304.0: 'CZ: Secondary education with an apprenticeship certificate, Secondary education without school-leaving examination', 20305.0: 'CZ: Secondary education without leaving examination followed by further studies with final exam (teaching, retraining)', 20306.0: 'CZ: Education with GCSE, full secondary vocational education with GCSE', 20307.0: 'CZ: Secondary educ. with school-leaving exam followed by studies with final exam (post-gr., follow-up courses etc)', 20308.0: 'CZ: Secondary general education with school-leaving examination (grammar school)', 20309.0: 'CZ: Post-secondary education with diploma: Higher vocational school (DiS), 5th and 6th year of conservatory (discharge)', 20310.0: \"CZ: Bachelor's degree\", 20311.0: \"CZ: Master's degree education (Mgr., Ing., Ing., MUDr., MDDr., MVDr., …)\", 20312.0: 'CZ: Doctoral studies, postgraduate education (Ph.D., Th.D., CSc, ...)', 20801.0: ' DK: municipal primary and lower secondary school: 5th grade or lower', 20802.0: ' DK: municipal primary and lower secondary school: 6th grade to 8th grade', 20803.0: ' DK: municipal primary and lower secondary school: 9th grade to 10th grade', 20804.0: \" DK: '(Upper) Secondary Education: Gymnasium, Higher Preparatory Examination (HF), Higher Commercial Examination Program\", 20805.0: ' DK: Semiskilled worker courses and short vocational education (less than 2 years)', 20806.0: ' DK: Vocational and technical (upper) secondary education', 20807.0: ' DK: Short-cycle higher non-university programmes (2-3 years)', 20808.0: ' DK: medium-cycle university and non-university programmes, proffesional bachelor degree (3-4 years)', 20809.0: ' DK: long-cycle university programmes, 1 part - university bachelor degree', 20810.0: ' DK: long-cycle university programmes, 2. part Kandidat degree (Masters) (5-6 years)', 20811.0: ' DK: Licentiat (closed research education program)', 20812.0: ' DK: Research Education, PhD., Doctor', 20813.0: ' DK: other', 23301.0: 'EE: Without primary education (less than 4 grades)', 23302.0: 'EE: Completed primary education (4-6 grades)', 23303.0: 'EE: Vocational education without completed primary education', 23304.0: 'EE: Completed basic education (7-9 grades)', 23305.0: 'EE: Vocational secondary education after basic education (training programme under 2 years)', 23306.0: 'EE: Completed secondary education', 23307.0: 'EE: Vocational secondary education after basic education (training programme 2 years or more)', 23308.0: 'EE: Vocational secondary education with secondary education or vocational secondary education (tehnical education) afte', 23309.0: 'EE: Vocational-secondary education (tehnical education) after secondary education', 23310.0: 'EE: Vocational university after secondary education diploma (up to 2 years trainings, but not Bachelor of Arts)', 23311.0: 'EE: Higher vocational education diploma or Bachelor of Arts degree (3-4 years of trainings)', 23312.0: 'EE: University Bachelor of Arts degree (3-4 years of trainings', 23313.0: 'EE: Master of Arts from Vocational university', 23314.0: 'EE: Master of Arts\\xa0(3+2, 4+2 or by 5+4 system, incl. integrated BA and MA), higher education started before 1992 (speci', 23315.0: \"EE: Doctor's degree\", 24601.0: ' FI: Less than primary school (grades 1-6) or less than comprehensive school', 24602.0: \" FI: Grades 1-6 of comprehensive school, or primary school or people's school\", 24603.0: ' FI: Grades 7-9 of comprehensive school, or middle school', 24604.0: ' FI: General upper secondary school, matriculation examination', 24605.0: ' FI: Vocational upper secondary qualification, further vocational qualification', 24606.0: ' FI: Both matriculation examination and vocational qualification', 24607.0: ' FI: Specialist vocational qualification', 24608.0: ' FI: Post-secondary level vocational qualification (old)', 24609.0: \" FI: Bachelors' degree in universities of applied sciences (polytechnic)\", 24610.0: \" FI: Bachelors' degree in university\", 24611.0: \" FI: Master's degree in universities of applied sciences (polytechnic)\", 24612.0: \" FI: Master's degree in university\", 24613.0: ' FI: Licentiate degree', 24614.0: ' FI: Doctoral degree', 24615.0: ' FI: other', 25001.0: ' FR: no schooling or not completed primary education', 25002.0: \" FR: Completed primary education, without the final certificate (Certificat d'études primaires=an old qualification off\", 25003.0: \" FR: Completed primary education, with the Certificat d'études primaires\", 25004.0: \" FR: Secondary education 1st cycle, without the final certificate (Brevet élémentaire, Brevet d'étude du premier cycl\", 25005.0: \" FR: Secondary education 1st cycle, with the final certificate (Brevet élémentaire, Brevet d'étude du premier cycle,\", 25006.0: ' FR: Secondary education 2nd cycle, without the final exam (Baccalauréat)', 25007.0: \" FR: Certificate of vocational ability : Certificat d'Aptitude Professionnelle (CAP) or Brevet d'Etudes Professionnelles\", 25008.0: ' FR: Vocational qualification in care (home care, children care, health care)', 25009.0: ' FR: Vocational Baccalaureat', 25010.0: ' FR: Technological Baccalaureat or equivalent diploma', 25011.0: ' FR: General Baccalaureat or equivalent diploma', 25012.0: ' FR: Certificate of ability in Law, Diploma allowing admission in tertiary education', 25013.0: ' FR: Qualifications of vocational secondary education in health and care institutions (like Moniteur éducateur and equi', 25014.0: ' FR: University education, 1st cycle Diploma in general tertiary education (2 years), classes for competitive entrance', 25015.0: ' FR: Diploma in Technological Studies , Diploma of Advanced Technician', 25016.0: ' FR: Qualification in paramedical and social sectors (social assistant, etc,)', 25017.0: ' FR: Vocational Bachelor (University education, 1st graduation and apprenticeship)', 25018.0: ' FR: Bachelor (University education, 2nd cycle, 1st year and apprenticeship)', 25019.0: ' FR: Engineer Degree', 25020.0: ' FR: Vocational Master Degree', 25021.0: ' FR: Intermediate Master degree (university education, 2nd cycle, 2nd year), qualification of primary and secondary educ', 25022.0: ' FR: Research Master Degree, qualification of university education teachers', 25023.0: ' FR: Qualifications of architects, veterinaries, notaries', 25024.0: ' FR: Diplôma from selective “grandes écoles”', 25025.0: ' FR: Doctorate in medecine, odontology, pharmacy', 25026.0: ' FR: Doctorate', 26801.0: 'GE: No education', 26802.0: 'GE: Less than 6 years primary education', 26803.0: 'GE: Primary education completed, 6 years', 26804.0: 'GE: Basic/ lower general education certificate, 9 years', 26805.0: 'GE: Upper secondary general education certificate', 26806.0: 'GE: Professional diploma level 1, 2, or 3 (Vocational Education certificate, before 2010)', 26807.0: 'GE: Professional diploma level 4/5 (Secondary Vocational Educ. Certificate pre-2010, Certified Diploma 2008-2010)', 26808.0: 'GE: Interim qualification, short cycle tertiary education', 26809.0: 'GE: Bachelor degree', 26810.0: 'GE: Master degree', 26811.0: 'GE: Specialist studies', 26812.0: 'GE: Doctoral degree', 34801.0: 'HU: Never attented school; 1-3 years of primary school or equivalent', 34802.0: 'HU: 4-7 years of primary school or equivalent', 34803.0: 'HU: Completed primary school or equivalent', 34804.0: 'HU: Vocational school', 34805.0: 'HU: Vocational training after the 10. grade', 34806.0: 'HU: Completed secondary vocational education with school-leaving exam', 34807.0: 'HU: Completed secondary general education (Gymnasium) with school-leaving exam', 34808.0: 'HU: Post-secondary, mon-tertiary vocational education and training (E.g. technical school)', 34809.0: 'HU: Short-cycle tertiary level vocational education and training (VET)', 34810.0: \"HU: College degree or college bachelor's degree - BA/BSc\", 34811.0: \"HU: University bachelor's degree - BA/BSc\", 34812.0: \"HU: College master's degree - MA/MSc\", 34813.0: \"HU: University degree or university master's degree - MA/MSc\", 34814.0: 'HU: Doctoral degree', 35201.0: 'IS: Less than primary education', 35202.0: 'IS: Primary education', 35203.0: 'IS: Elementary school, 14–15 years of age', 35204.0: 'IS: National test', 35205.0: 'IS: Elementary school, 15–16 years of age (compulsory education)', 35206.0: 'IS: Elementary school, 16–17 years of age', 35207.0: 'IS: Vocational education at the lower secondary level', 35208.0: 'IS: Post-secondary non-tertiary education', 35209.0: 'IS: Other post-secondary, non-tertiary vocational education', 35210.0: 'IS: Upper secondary art education, 2+ years', 35211.0: 'IS: Certified trades, school diploma', 35212.0: 'IS: Matriculation examination', 35213.0: 'IS: Upper secondary education', 35214.0: 'IS: Master of a certified trade', 35215.0: 'IS: Tertiary general education, 2–3 years', 35216.0: 'IS: Tertiary vocational education, 2–3 years', 35217.0: 'IS: Bachelor’s or equivalent level', 35218.0: 'IS: Master’s or equivalent level', 35219.0: 'IS: Doctoral or equivalent level', 38001.0: ' IT: No title', 38002.0: ' IT: Elementary school diploma', 38003.0: ' IT: Vocational training', 38004.0: ' IT: Middle school diploma', 38005.0: ' IT: Post-obligation vocational regional qualification', 38006.0: \" IT: Vocational institute diploma (2 or 3 years), including art teacher diploma, teacher's training school diploma and n\", 38007.0: ' IT: High school diploma (5 years), technical or vocational institute, including art institute five years diploma', 38008.0: ' IT: High school diploma (4 or 5 years), classical, scientific, linguistic or psyco-pedagogical, musical lyceum, includi', 38009.0: ' IT: Post-(high school) diploma specialization, post-(high school) diploma vocational regional qualification, certificat', 38010.0: ' IT: Former system academic diploma (2 or 3 years), including higher institute of physical education, social service and', 38011.0: ' IT: Tertiary education not academic diploma: Music Conservatory, Academy of Fine Arts and similar', 38012.0: ' IT: Three years or first level degree (bachelor)', 38013.0: ' IT: First level specialization degree', 38014.0: \" IT: Former system degree, master's degree, single cycle degree\", 38015.0: ' IT: Second level specialization degree', 38016.0: ' IT: Post-graduate specialization (1 or 2 years)', 38017.0: ' IT: Post-graduate specialization (3 or 4 years), including medical specialization', 38018.0: ' IT: Doctoral degree', 42801.0: ' LV: Has not attended school', 42802.0: ' LV: Incompete primary education ( 6 grades)', 42803.0: ' LV: General primary education', 42804.0: ' LV: Basic vocational education', 42805.0: ' LV: Vocational education (without secondary) (1 year)', 42806.0: ' LV: Vocational education (without secondary) (3 years)', 42807.0: ' LV: General secondary education', 42808.0: ' LV: Vocational secondary education', 42809.0: ' LV: Vocational (not higher) education after general secondary education', 42810.0: ' LV: 1st level professional/ vocational higher education (college)', 42811.0: \" LV: Bachelor's degree (professional)\", 42812.0: \" LV: Bachelor's degree (academic)\", 42813.0: \" LV: Master's degree (professional)\", 42814.0: \" LV: Master's degree (academic)\", 42815.0: ' LV: Higher education obtained during the Soviet era', 42816.0: ' LV: Doctoral degree', 44000.0: ' LT: Less than primary', 44001.0: ' LT: Primary', 44002.0: ' LT: Lower general vocational', 44003.0: ' LT: General/ lower secondary', 44004.0: ' LT: General vocational', 44005.0: ' LT: Lower vocational after general', 44006.0: ' LT: Vocational after general', 44007.0: ' LT: Secondary', 44008.0: ' LT: Vocational with secondary', 44009.0: ' LT: Vocational after secondary', 44010.0: ' LT: Upper general and secondary vocational', 44011.0: ' LT: Upper secondary vocational', 44012.0: ' LT: Higher non university', 44013.0: ' LT: Higher university education (BA)', 44014.0: ' LT: Higher university education (MA)', 44015.0: ' LT: Higher university integrated education (I and II stages - 6 years)', 44016.0: ' LT: Doctoral studies and diploma', 49901.0: ' ME: No education', 49902.0: ' ME: Completed 4 years of primary education', 49903.0: ' ME: Completed lower secondary education', 49904.0: ' ME: 1-2 years vocational training', 49905.0: ' ME: Completed high school lasting three years', 49906.0: ' ME: Certificate of upper secondary vocational education (4 years)', 49907.0: ' ME: Secondary general (grammar schools, 4 years)', 49908.0: ' ME: Vocational exam', 49909.0: ' ME: Primary level diploma (after two or three years of bachelor level pre-Bologne reform)', 49910.0: ' ME: Completed two years of higher education that provides basic certificate but not entrance to MA studies', 49911.0: ' ME: Vocational studies (in duration of three years)', 49912.0: ' ME: Bachelor studies in duration of 3 years', 49913.0: ' ME: Specialization studies or four year studies in pre-Bologne system', 49914.0: ' ME: Master studies in duration of one year; Integrated studies (five year studies); Specialization studies', 49915.0: ' ME: Magister studies, Studies of medicine (in duration of 6 years, in old system), Specialisation', 49916.0: ' ME: PhD', 52801.0: 'NL: No completed primary education', 52802.0: 'NL: Primary education', 52803.0: \"NL: Pre-vocational program ('vmbo level 1, 2 or 3' or 'lbo') or comparable\", 52804.0: \"NL: Preparatory secondary vocational education ('mavo' (previous 'vmbo') or 'vmbo level 4') or comparable\", 52805.0: 'NL: Intermediate vocational educational, level 1 (duration 2 year)', 52806.0: \"NL: Senior general secondary school ('havo') or comparable\", 52807.0: \"NL: Pre-university education ('vwo' or gymnasium) or comparable\", 52808.0: \"NL: kmbo', 'meao', 'mts' or comparable (duration 2-3 years)\", 52809.0: 'NL: Intermediate vocational education , levels 2 and 3 (duration 2-3 years)', 52810.0: 'NL: Intermediate vocational education , level 4 (duration 4 years)', 52811.0: \"NL: Intermediate vocational education plus (for people that completed 'havo')\", 52812.0: 'NL: First year of university, Bachelor (propaedeutics)', 52813.0: 'NL: Shorter higher vocational education, shorter University of Applied Sciences (duration 2 or 3 years)', 52814.0: \"NL: Higher vocational education / University of Applied Sciences, Bachelor's degree or comparable\", 52815.0: \"NL: University, Bachelor's degree\", 52816.0: \"NL: Higher vocational education / University of Applied Sciences, Master's degree or comparable\", 52817.0: \"NL: University, Master's degree or comparable\", 52818.0: 'NL: University, doctoral degree (promotion)', 57801.0: ' NO: Never attended an education programme', 57802.0: ' NO: Some early childhood education', 57803.0: ' NO: Some primary education (without level completion)', 57810.0: ' NO: Primary education', 57824.0: ' NO: Lower secondary education - general', 57825.0: ' NO: Lower secondary education - vocational', 57834.0: ' NO: Upper secondary education - general', 57835.0: ' NO: Upper secondary education - vocational', 57844.0: ' NO: Post-secondary non-tertiary education - general', 57845.0: ' NO: Post-secondary non-tertiary education - vocational', 57854.0: ' NO: Short-cycle tertiary education - general', 57855.0: ' NO: Short-cycle tertiary education - vocational', 57856.0: ' NO: Short-cycle tertiary education - orientation unspecified', 57864.0: ' NO: Bachelor’s or equivalent level - academic', 57865.0: ' NO: Bachelor’s or equivalent level - professional', 57866.0: ' NO: Bachelor’s or equivalent level - orientation unspecified', 57874.0: ' NO: Master’s or equivalent level - academic', 57875.0: ' NO: Master’s or equivalent level - professional', 57876.0: ' NO: Master’s or equivalent level - orientation unspecified', 57884.0: ' NO: Doctoral or equivalent level - academic', 57885.0: ' NO: Doctoral or equivalent level - professional', 57886.0: ' NO: Doctoral or equivalent level - orientation unspecified', 61601.0: 'PL: primary education not completed', 61602.0: 'PL: primary education (6 grades or 4 grades)', 61603.0: 'PL: primary education', 61604.0: 'PL: lower secondary', 61605.0: 'PL: basic vocational education in agriculture', 61606.0: 'PL: basic vocational education', 61607.0: 'PL: basic vocational education', 61608.0: 'PL: upper secondary education without A-level diploma', 61609.0: 'PL: upper secondary education with A-level diploma', 61610.0: 'PL: upper secondary vocational or technical education', 61611.0: 'PL: upper secondary vocational or technical education with A-level diploma', 61612.0: 'PL: diploma of technician or post secondary education', 61613.0: \"PL: post secondary education in teachers' college\", 61614.0: \"PL: BA or engineer's diploma\", 61615.0: \"PL: MA or doctor's diploma\", 61616.0: \"PL: PhD, assistant professor, professor's title\", 61617.0: 'PL: other', 62001.0: ' PT: None', 62002.0: ' PT: Basic Level 1 (until 4th grade, primary education)', 62003.0: ' PT: Basic level 2 (until 6th grade, 1st cycle of former comercial or industrial high school)', 62004.0: ' PT: Type 1 education and formation courses. Attribution of level 1 professional qualification diploma', 62005.0: ' PT: Basic Level 3 (Certificate of conclusion of one of the following grades: 9th grade; former 5th grade of high school', 62006.0: ' PT: Type 2 education and formation courses. Attribution of level 2 professional qualification diploma', 62007.0: ' PT: Types 3 and 4 education and formation courses. Attribution of level 2 professional qualification diploma', 62008.0: ' PT: Secondary Level - Scientific-Humanistic studies (certificate of conclusion of one of the following grades: 12th gra', 62009.0: ' PT: Secondary Level -technologic and artistic studies (visual and audiovisual arts, dance and music), professional cour', 62010.0: ' PT: Technologic specialisation course. Attribution of Thecnologic specialisation diploma', 62011.0: ' PT: Polytechnic superior level:3 years bacalaureat (primary school teachers, social service, agricultural manager); f', 62012.0: ' PT: Polytechnic superior level:3-4 years graduation', 62013.0: ' PT: University superior level: 3-4 years graduation: 4 years two-stage graduation', 62014.0: ' PT: Post-graduation: post-graduation specialisation without degree atribution, MBA', 62015.0: ' PT: University superior level: gradution with more than 4 years: 5 years two-stage graduation', 62016.0: ' PT: Master degree (inc. integrated master)', 62017.0: ' PT: PhD', 64200.0: ' RO: No school at all', 64201.0: ' RO: Unfinished primary school', 64202.0: ' RO: Finished primary school', 64203.0: ' RO: Unfinished gymnasia', 64204.0: ' RO: Graduated gymnasia', 64205.0: ' RO: Apprentice (complementary) school', 64206.0: ' RO: School of Arts and Crafts', 64207.0: ' RO: School of Arts and Crafts - year of completion', 64208.0: ' RO: Professional school, less than 2 years', 64209.0: ' RO: Professional school, 2-4 years', 64210.0: ' RO: Unfinished High School', 64211.0: ' RO: Completed Theoretical High School (Baccalaureate Diploma)', 64212.0: ' RO: Completed Technological / Industrial High School (Baccalaureate Diploma)', 64213.0: ' RO: Foreman school without Baccalaureate', 64214.0: ' RO: Foreman school with Baccalaureate', 64215.0: ' RO: Post-highschool without Baccalaureate', 64216.0: ' RO: Post-highschool with Baccalaureate', 64217.0: ' RO: Unfinished university studies', 64218.0: ' RO: Sub-engineers or College', 64219.0: ' RO: BA (graduated university): 3 years', 64220.0: ' RO: BA (graduated university): 4 years', 64221.0: ' RO: BA (graduated university): 5 years', 64222.0: ' RO: BA (graduated university): 6 years', 64223.0: ' RO: Master', 64224.0: ' RO: PhD', 64301.0: 'RU: Did not study in school or completed 1-2 grades on school only (incomplete primary school)', 64302.0: 'RU: Graduated 3-7 grades of secondary school without attestat on basic general education', 64303.0: 'RU: Attestat of basic general educ.–complete 7 grade (pre 1958); 8 gr.(1960-1980); 9 gr.(modern system); no profes. ed', 64304.0: 'RU: Completed general secondary educ. (10 grade by old system,11 grade by new), got attestat; no professional educ.', 64305.0: 'RU: Got primary professional educ.–grad. PTU,FSU,FSO, profes.-techn. lyceum; no attestat of compl. sec. gen. educ.(<2y', 64306.0: 'RU: Got primary professional educ.– grad. PTU, professional-techn. lyceum, with attestat of completed sec. educ.(1-3 y', 64307.0: 'RU: Got secondary professional education – graduated technikum, uchilishe, college (2-4 years of study)', 64308.0: 'RU: Got diploma of bachelor in college after 4 years of education on two-stage new education system', 64309.0: 'RU: Got diploma of master in college after additional 2 years of education on two-stage new education system', 64310.0: 'RU: Completed high education by 5-6-years system (diploma of specialist)', 64311.0: 'RU: Scientific degree (candidate, doctor of sciences)', 68801.0: ' RS: No education (under 3rd grade)', 68802.0: ' RS: Primary education lower cycle (4th – 7th grade)', 68803.0: ' RS: Primary education upper cycle (8th grade)', 68804.0: ' RS: Secondary vocational 3 yrs', 68805.0: ' RS: Secondary vocational 4 yrs', 68806.0: ' RS: Secondary general (grammar schools)', 68807.0: ' RS: 1-2 years vocational training', 68808.0: ' RS: Higher schools', 68809.0: ' RS: University: Graduate studies', 68810.0: ' RS: Postgraduate studies: Specialist studies', 68811.0: ' RS: Postgraduate studies: Magister studies (outdated)', 68812.0: ' RS: Postgraduate studies: Master studies', 68813.0: ' RS: PhD studies/ Doctor’s Degree', 70301.0: 'SK: Not completed first stage of elementary school (not completed primary level of education)', 70302.0: 'SK: Not completed second stage of elementary school (not completed lower secondary level of education)', 70303.0: 'SK: Completed lower secondary educ.(completed 8/9 y. of elementary school or courses to complete lower secondary educ.)', 70304.0: ' SK: Practical (girl) school, two-years training programmes, requalification courses without vocational certificate', 70305.0: 'SK: secondary vocational school or sec. voc. training institution or sec. voc. school without leaving exam (no maturita)', 70306.0: 'SK: Secondary vocational school with leaving exam (with maturita), secondary vocat. training institution (with maturita)', 70307.0: 'SK: Eight year grammar school - 4 year grammar school', 70308.0: 'SK: Complementary study', 70309.0: \"SK: Complementary 'postgraduate' pedagogical study\", 70310.0: \"SK: 'postgraduate' vocational study\", 70311.0: 'SK: Postgraduate specialised study with leaving certificate, Dance conservatory', 70312.0: 'SK: Secondary vocational schoool with leaving examination (maturita) - six year study', 70313.0: 'SK: Bachelors degree', 70314.0: \"SK: Master degree (engineering study, 'small' doctorate)\", 70315.0: 'SK: postgraduate pedagogical study, teaching certificate for university graduates', 70316.0: 'SK: PhD study, doctoral degree', 70501.0: 'SI: Without school education', 70502.0: 'SI: Incomplete primary education', 70503.0: 'SI: Primary education', 70504.0: 'SI: Lower or upper secondary vocational education', 70505.0: 'SI: Secondary vocational education', 70506.0: 'SI: Secondary general education', 70507.0: 'SI: Higher vocational education, post-secondary education (2 years)', 70508.0: 'SI: Higher vocational education - 1. Bologna level.', 70509.0: 'SI: Higher education university education', 70510.0: \"SI: Bologna master's degree\", 70511.0: 'SI: Specialization', 70512.0: \"SI: Master's degree\", 70513.0: 'SI: phD', 72401.0: 'ES: No studies', 72402.0: 'ES: Not completed primary studies', 72403.0: 'ES: Old Primary School (Before 1970)', 72404.0: 'ES: Up to the 5th course of EGB (Basic General Education). From 70s to 90s', 72405.0: 'ES: Up to the 6th course of Primary School', 72406.0: 'ES: Primary School in Music and Dance', 72407.0: 'ES: Elementary High School (Before 1970)', 72408.0: 'ES: Up to the 8th course of EGB (Basic General Education). From 70s to 90s', 72409.0: 'ES: Compulsory High School', 72410.0: 'ES: High School (From 70s to 90s)', 72411.0: 'ES: Pre-University Studies (before 90s)', 72412.0: 'ES: Not compulsory High School', 72413.0: 'ES: Vocational training (initiation)', 72414.0: 'ES: Vocational training (initiation) (old Law)', 72415.0: 'ES: Vocational training (first grade) (old Law)', 72416.0: 'ES: Vocational training (first grade)', 72417.0: 'ES: Vocational training (medium grade, technical in various professions such as administrative or mechanic )', 72418.0: 'ES: Vocational training (medium grade, arts and design)', 72419.0: 'ES: Vocational training (medium grade, music and dance)', 72420.0: 'ES: Vocational training (high grade, industrial) (old Law)', 72421.0: 'ES: Vocational training (high grade, general) (old Law)', 72422.0: 'ES: Vocational training (high grade, general)', 72423.0: 'ES: Vocational training (high grade in arts)', 72424.0: 'ES: Medium Tertiary studies (nursery, school teacher, social worker)', 72425.0: 'ES: Medium Tertiary studies ( building engineer, industrial or business expert)', 72426.0: 'ES: Long tertiary studies', 72427.0: 'ES: Phd', 72428.0: 'ES: Other (specify)', 75201.0: ' SE: not completed ISCED level 1', 75202.0: ' SE: ISCED 1, completed primary education', 75203.0: ' SE: Qualification from general ISCED 2A programmes, access to ISCED 3A general or all 3', 75204.0: ' SE: Old version of vocational high school', 75205.0: ' SE: Old and current version of high school education that gives access to higher education', 75206.0: ' SE: Old version of mainly vocational high school with limited access to higher education', 75207.0: ' SE: Vocational high school', 75208.0: ' SE: Technical high school, formerly 4 years at high school, currently 3 years at high school and 4th year at university', 75209.0: ' SE: Degree from one year of studies at university college.', 75210.0: ' SE: Vocational degree, qualification obtained after high school graduation, from vocational training institutes', 75211.0: ' SE: Vocational degree, obtained at university or university college, e.g. old professional nursing programmes', 75212.0: ' SE: Vocational degree, obtained after high school graduation, longer programme 2-3 years from vocational training insti', 75213.0: \" SE: Bachelor's degree or professional degree from a university college\", 75214.0: \" SE: Bachelor's degree or professional degree from a university\", 75215.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75216.0: ' SE: Masters degree from university college', 75217.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75218.0: ' SE: Masters degree from university', 75219.0: ' SE: Research degree, licantiate degree, a sort of half-way doctoral degree, old degree that is not often used', 75220.0: ' SE: Research degree, phd', 75601.0: 'CH: Incompleted primary school', 75602.0: 'CH: Primary school', 75603.0: 'CH: Secondary education (first stage)', 75604.0: 'CH: Additional year of secondary education, preparation for vocational training', 75605.0: 'CH: General training school (2-3 years)', 75606.0: 'CH: Baccalaureate preparing for university', 75607.0: 'CH: Baccalaureate for adults or apprenticeship after Baccalaureate', 75608.0: 'CH: Diploma for teaching in primary school or preprimary school', 75609.0: 'CH: Vocational baccalaureate', 75610.0: 'CH: Vocational baccalaureate for adults', 75611.0: 'CH: Elementary vocational training (enterprise and school, 1-2 year)', 75612.0: 'CH: Apprenticeship (vocational training, dual system, 3-4 years)', 75613.0: 'CH: Second vocational training (or apprenticeship as second education)', 75614.0: 'CH: Advanced vocational qualification (specialization exam, federal certif. or dipl. of advanced vocational training)', 75615.0: 'CH: Higher vocational training (high school diploma - technical, administration, health, social work, applied arts)', 75616.0: 'CH:Higher vocational training (diploma of some specific high schools withrecognition of tertiary level)', 75617.0: 'CH: University of applied science and pedagogical university (Bachelor)', 75618.0: 'CH: University of applied science and pedagogical university (Master)', 75619.0: 'CH: University diploma (intermediary level)', 75620.0: 'CH: University diploma and post-graduate (including technical) (Bachelor and short university degree)', 75621.0: 'CH: University diploma and post-graduate (including technical) (degree requiring more than 4 years)', 75622.0: 'CH: University diploma and post-graduate (including technical) (Master)', 75623.0: 'CH: Doctoral degree', 75624.0: 'CH: other', 80400.0: ' UA: Incomplete primary secondary education (less than 4 classes)', 80401.0: ' UA: Primary secondary education (1- 3(4) classes)', 80402.0: ' UA: Basic secondary education (certificate for 8(9) class)', 80403.0: ' UA: Technical-vocational education based on basic secondary education (no certificate of complete secondary education)', 80404.0: ' UA: Technical-vocational education based on of basic general secondary (certificate of general secondary education and', 80405.0: ' UA: Complete secondary education (certificate of general secondary education of 10(11) classes)', 80406.0: ' UA: Additional training training on the basis of general secondary education (vocational and general educational course', 80407.0: ' UA: Technical-vocational education on the basis of general secondary education', 80408.0: ' UA: Professional pre-higher education (diploma of junior specialist)', 80409.0: \" UA: Basic higher education (bachelor's degree)\", 80410.0: ' UA: Full higher education (specialist)', 80411.0: ' UA: Full higher education (Master or equivalent)', 80412.0: ' UA: Academic degree (candidate, doctor, PhD)', 80701.0: 'MK: Without education', 80702.0: 'MK: Completed primary education (4 years of primary school)', 80703.0: 'MK: Completed primary and lower secondary education', 80704.0: 'MK: Completed upper secondary education, vocational training - 2 years', 80705.0: 'MK: Completed upper secondary education, vocational training - 3 years', 80706.0: 'MK: Completed upper secondary education, vocational training - 4 years', 80707.0: 'MK: Completed upper secondary education, general (high school) - 4 years', 80708.0: 'MK: Completed further education - short cycle university education - 2 years', 80709.0: 'MK: Bachelor degree - 3 years', 80710.0: 'MK: Bachelor degree - 4 years', 80711.0: 'MK: Completed postgraduate studies, specialist studies - 1 year', 80712.0: 'MK: Completed postgraduate studies, specialist studies - 2 years', 80713.0: 'MK: Completed postgraduate studies, master studies - 1 year', 80714.0: 'MK: Completed postgraduate studies, master studies - 2 years', 80715.0: 'MK: Doctoral degree, completed doctorate - 5 years', 80716.0: 'MK: Doctoral degree, completed doctorate (PhD studies) - 3 years', 80788.0: 'MK: don’t know (spontaneous)', 80799.0: 'MK: no answer (spontaneous)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True55120535
v243_cs_DE1348v243_cs_DE1numericDE COUNTRY-SPECIFIC: educational level respondent (Q81), SCHOOL{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', 27601.0: 'Primary school not completed', 27602.0: 'Primary school completed, secondary school not (yet) completed', 27603.0: 'Lower secondary schools (no access to general) or polytechnic secondary school (8th or 9th grade)', 27604.0: 'Lower secondary schools (access to general) or polytechnic secondary school (10th grade)', 27605.0: 'University of Applied Science entrance qualification (specialised vocational high schools etc.)', 27606.0: 'Grammar school (University entrance qualification)', 27607.0: 'Other, please specify: (write in)'}{-4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True21337
v243_cs_DE2349v243_cs_DE2numericDE COUNTRY-SPECIFIC: educational level respondent (Q81), STUDIES{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', 27601.0: 'No degree', 27602.0: 'Preliminary examination, preliminary diploma', 27603.0: 'College of public administration or University of Applied Sciences (diploma)', 27604.0: 'Vocational academy (diploma)', 27605.0: 'College of public administration or University of Applied Sciences (Bachelor)', 27606.0: 'Vocational academy (Bachelor)', 27607.0: 'University (Bachelor)', 27608.0: 'College of public administration or University of Applied Sciences (Master)', 27609.0: 'Vocational academy (Master)', 27610.0: 'University (diploma, Magister, state examaniation)', 27611.0: 'University (Master or postgraduate studies)', 27612.0: 'Doctoral studies', 27613.0: 'other, please specify: (write in)'}{-4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True201613
v243_cs_DE3350v243_cs_DE3numericDE COUNTRY-SPECIFIC: educational level respondent (Q81), VOCATIONAL{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', 27601.0: 'No degree', 27602.0: 'Pre-vocational training, qualification of short health sector programmes', 27603.0: 'Vocational training with diploma, but no Dual System (second cycle)', 27604.0: 'Medical assistant, nurse (qualification of health sector schools (2 and 3 years)', 27605.0: 'Qualification of civil servants for the medium level', 27606.0: 'Qualification in the Dual System (second cycle), industrial or agricultural sector', 27607.0: 'Qualification in the Dual System (second cycle), sales sector', 27608.0: 'Qualification of a vocational full-time school', 27609.0: 'Occupational qualification (second cycle) for students with occupational qualification or with university entrace qualif', 27610.0: \"Master craftsmen's or Technician's qualification (or equal)\", 27611.0: 'other, please specify: (write in)'}{-4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True204811
v243_cs_GB1351v243_cs_GB1numericGB COUNTRY-SPECIFIC: educational level respondent: Up to 2 or more A-levels or equivalent (Q81a){82601.0: '2 or more A-levels or equivalent', 82602.0: ' GNVQ or GSVQ Intermediate', 82603.0: ' Vocational GCSE or equivalent', 82604.0: ' 5 or more GCSEs A*-C or equivalent', 82605.0: ' 1-4 GCSEs A*-C or equivalent', 82606.0: ' Skills for life', 82607.0: ' None of these'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True17767
v243_cs_GB2352v243_cs_GB2numericGB COUNTRY-SPECIFIC: educational level respondent: Up to Ph.D or equivalent (Q81b){82601.0: ' Ph.D, D.Phil or equivalent', 82602.0: ' Masters Degree, M.Phil, Post-Graduate Diplomas and Certificates', 82603.0: ' 5 year University/CNAA first Degree (MB, BDS, BV etc)', 82604.0: ' 3-4 year University/CNAA first Degree (BA, BSc., BEd., BEng. Etc)', 82605.0: ' Nursing certificate, Teacher training, HE Diploma, Edexcel/BTEC/BEC/TEC/HND, City and Guilds, NVQ/SVQ - Leve', 82606.0: ' Foundation Degree (FdA, FdSc etc)', 82607.0: ' Edexcel/BTEC/BEC/TEC - Higher National Certificate (HNC) or equivalent', 82608.0: ' HE Access', 82609.0: ' Vocational A-level (AVCE), GCE Applied A-level, NVQ/SVQ Level 3, GNVQ/GSVQ Advanced, Edexcel/BTEC/BEC/TEC (G', 82610.0: ' (Modern) Apprenticeship, Advanced (Modern) Apprenticeship, SVQ/NVQ/Key Skills Level 1 and 2, City and Guild', 82611.0: ' None of these', 82612.0: ' Any other qualifications (specify)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True177512
v244353v244numericpaid employment/no paid employment (Q82){1.0: '30h a week or more', 2.0: 'less then 30h a week', 3.0: 'self employed', 4.0: 'military service', 5.0: 'retired/pensioned', 6.0: 'homemaker not otherwise employed', 7.0: 'student', 8.0: 'unemployed', 9.0: 'disabled', 10.0: 'other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5902710
v245354v245numericemployment/self-employment: last job (Q83){1.0: 'employed', 2.0: 'self-employed'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'never had a paid job'}True219032
v246_ISCO_2355v246_ISCO_2numerickind of job respondent - 2 digit ISCO08 code (Q84a){0.0: 'Armed Forces Occupations', 1.0: 'Commissioned Armed Forces Officers', 2.0: 'Non-commissioned Armed Forces Officers', 3.0: 'Armed Forces Occupations, Other Ranks', 10.0: 'ISCO 1-digit: Managers', 11.0: 'Chief Executives, Senior Officials and Legislators', 12.0: 'Administrative and Commercial Managers', 13.0: 'Production and Specialized Services Managers', 14.0: 'Hospitality, Retail and Other Services Managers', 20.0: 'ISCO 1-digit: Professionals', 21.0: 'Science and Engineering Professionals', 22.0: 'Health Professionals', 23.0: 'Teaching Professionals', 24.0: 'Business and Administration Professionals', 25.0: 'Information and Communications Technology Professionals', 26.0: 'Legal, Social and Cultural Professionals', 30.0: 'ISCO 1-digit: Technicians and Associate Professionals', 31.0: 'Science and Engineering Associate Professionals', 32.0: 'Health Associate Professionals', 33.0: 'Business and Administration Associate Professionals', 34.0: 'Legal, Social, Cultural and Related Associate Professionals', 35.0: 'Information and Communications Technicians', 40.0: 'ISCO 1-digit: Clerical Support Workers', 41.0: 'General and Keyboard Clerks', 42.0: 'Customer Services Clerks', 43.0: 'Numerical and Material Recording Clerks', 44.0: 'Other Clerical Support Workers', 50.0: 'ISCO 1-digit: Services and Sales Workers', 51.0: 'Personal Services Workers', 52.0: 'Sales Workers', 53.0: 'Personal Care Workers', 54.0: 'Protective Services Workers', 60.0: 'ISCO 1-digit: Skilled Agricultural, Forestry and Fishery Workers', 61.0: 'Market-oriented Skilled Agricultural Workers', 62.0: 'Market-oriented Skilled Forestry, Fishery and Hunting Workers', 63.0: 'Subsistence Farmers, Fishers, Hunters and Gatherers', 70.0: 'ISCO 1-digit: Craft and Related Trades Workers', 71.0: 'Building and Related Trades Workers (excluding Electricians)', 72.0: 'Metal, Machinery and Related Trades Workers', 73.0: 'Handicraft and Printing Workers', 74.0: 'Electrical and Electronics Trades Workers', 75.0: 'Food Processing, Woodworking, Garment and Other Craft and Related Trades Workers', 80.0: 'ISCO 1-digit: Plant and Machine Operators and Assemblers', 81.0: 'Stationary Plant and Machine Operators', 82.0: 'Assemblers', 83.0: 'Drivers and Mobile Plant Operators', 90.0: 'ISCO 1-digit: Elementary Occupations', 91.0: 'Cleaners and Helpers', 92.0: 'Agricultural, Forestry and Fishery Labourers', 93.0: 'Labourers in Mining, Construction, Manufacturing and Transport', 94.0: 'Food Preparation Assistants', 95.0: 'Street and Related Sales and Services Workers', 96.0: 'Refuse Workers and Other Elementary Workers', 99.0: 'ISCO could not be applied to response given'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5151051
v246_SIOPS356v246_SIOPSnumerickind of job respondent - SIOPS08 code (Q84a){}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5128063
v246_ISEI357v246_ISEInumerickind of job respondent - ISEI08 code (Q84a){}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5128077
v246_ESeC358v246_ESeCnominalkind of job respondent - ESEC08 code (Q84a){1.0: 'Large employers, higher mgrs/professionals', 2.0: 'Lower mgrs/professionals, higher supervisory/technicians', 3.0: 'Intermediate occupations', 4.0: 'Small employers and self-employed (non-agriculture)', 5.0: 'Small employers and self-employed (agriculture)', 6.0: 'Lower supervisors and technicians', 7.0: 'Lower sales and service', 8.0: 'Lower technical', 9.0: 'Routine', 99.0: 'ISCO could not be applied to response given'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey beak-off)', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True512809
v246_egp359v246_egpnumerickind of job respondent - EGP11 (Q84a){1.0: 'I :Higher Controllers', 2.0: 'II :Lower Controllers', 3.0: 'IIIa:Routine Nonmanual', 4.0: 'IIIb:Lower Sales-Service', 5.0: 'IVa:Selfempl with empl', 6.0: 'IVb:Selfempl no empl', 7.0: 'V :Manual Supervisors', 8.0: 'VI :Skilled Worker', 9.0: 'VIIa:Unskilled Worker', 10.0: 'VIIb:Farm Labor', 11.0: 'IVc:Selfempl Farmer', 99999.0: 'ISCO could not be applied to response given'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True5125711
v247360v247numericrespondent has/had how many employees (Q85){1.0: 'none', 2.0: '1-9', 3.0: '10-24', 4.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True54674
v248361v248numericdo/did you supervise someone (Q86){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True460982
v248a362v248anumerichow many people do/did you supervise (Q86a){1.0: '1-9', 2.0: '10-24', 3.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True122053
v249363v249numericemployment sector you work/-ed for (Q87){1.0: 'government or public institution', 2.0: 'private business or industry', 3.0: 'private non-profit organization'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True434423
v250364v250numericpartner/spouse born in [country] (Q88){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True359142
v251b365v251bnominalspouse/partners country of birth (ISO 3166-1/3 Alpha code) (Q88a){'005': 'M49 code: South America', '011': 'M49 code: Western Africa', '013': 'M49 code: Central America', '014': 'M49 code: Eastern Africa', '015': 'M49 code: Northern Africa', '017': 'M49 code: Middle Africa', '018': 'M49 code: Southern Africa', '029': 'M49 code: Caribbean', '030': 'M49 code: Eastern Asia', '034': 'M49 code: Southern Asia', '035': 'M49 code: South-Eastern Asia', '039': 'M49 code: Southern Europe', '053': 'M49 code: Australia and New Zealand', '054': 'M49 code: Melanesia', '061': 'M49 code: Polynesia', '143': 'M49 code: Central Asia', '145': 'M49 code: Western Asia', '154': 'M49 code: Northern Europe', 'AD': 'Andorra', 'AE': 'United Arab Emirates', 'AF': 'Afghanistan', 'AG': 'Antigua and Barbuda', 'AI': 'Anguilla', 'AL': 'Albania', 'AM': 'Armenia', 'AO': 'Angola', 'AQ': 'Antarctica', 'AR': 'Argentina', 'AS': 'American Samoa', 'AT': 'Austria', 'AU': 'Australia', 'AW': 'Aruba', 'AX': 'Åland Islands', 'AZ': 'Azerbaijan', 'BA': 'Bosnia and Herzegovina', 'BB': 'Barbados', 'BD': 'Bangladesh', 'BE': 'Belgium', 'BF': 'Burkina Faso', 'BG': 'Bulgaria', 'BH': 'Bahrain', 'BI': 'Burundi', 'BJ': 'Benin', 'BL': 'Saint Barthélemy', 'BM': 'Bermuda', 'BN': 'Brunei Darussalam', 'BO': 'Bolivia (Plurinational State of)', 'BQ': 'Bonaire, Sint Eustatius and Saba', 'BR': 'Brazil', 'BS': 'Bahamas', 'BT': 'Bhutan', 'BV': 'Bouvet Island', 'BW': 'Botswana', 'BY': 'Belarus', 'BZ': 'Belize', 'CA': 'Canada', 'CC': 'Cocos (Keeling) Islands', 'CD': 'Congo (Democratic Republic of the)', 'CF': 'Central African Republic', 'CG': 'Congo', 'CH': 'Switzerland', 'CI': 'Côte d´Ivoire', 'CK': 'Cook Islands', 'CL': 'Chile', 'CM': 'Cameroon', 'CN': 'China', 'CO': 'Colombia', 'CR': 'Costa Rica', 'CSHH': 'Czechoslovakia (former country)', 'CSXX': 'Serbia and Montenegro (former country)', 'CU': 'Cuba', 'CV': 'Cabo Verde', 'CW': 'Curaçao', 'CX': 'Christmas Island', 'CY': 'Cyprus', 'CY-TCC': 'Northern Cyprus', 'CZ': 'Czechia', 'DDDE': 'German Democratic Republic (former country)', 'DE': 'Germany', 'DJ': 'Djibouti', 'DK': 'Denmark', 'DM': 'Dominica', 'DO': 'Dominican Republic', 'DZ': 'Algeria', 'EC': 'Ecuador', 'EE': 'Estonia', 'EG': 'Egypt', 'EH': 'Western Sahara', 'ER': 'Eritrea', 'ES': 'Spain', 'ET': 'Ethiopia', 'FI': 'Finland', 'FJ': 'Fiji', 'FK': 'Falkland Islands (Malvinas)', 'FM': 'Micronesia (Federated States of)', 'FO': 'Faroe Islands', 'FR': 'France', 'GA': 'Gabon', 'GB': 'United Kingdom of Great Britain and Northern Ireland', 'GD': 'Grenada', 'GE': 'Georgia', 'GF': 'French Guiana', 'GG': 'Guernsey', 'GH': 'Ghana', 'GI': 'Gibraltar', 'GL': 'Greenland', 'GM': 'Gambia', 'GN': 'Guinea', 'GP': 'Guadeloupe', 'GQ': 'Equatorial Guinea', 'GR': 'Greece', 'GS': 'South Georgia and the South Sandwich Islands', 'GT': 'Guatemala', 'GU': 'Guam', 'GW': 'Guinea-Bissau', 'GY': 'Guyana', 'HK': 'Hong Kong', 'HM': 'Heard Island and McDonald Islands', 'HN': 'Honduras', 'HR': 'Croatia', 'HT': 'Haiti', 'HU': 'Hungary', 'ID': 'Indonesia', 'IE': 'Ireland', 'IL': 'Israel', 'IM': 'Isle of Man', 'IN': 'India', 'IO': 'British Indian Ocean Territory', 'IQ': 'Iraq', 'IR': 'Iran (Islamic Republic of)', 'IS': 'Iceland', 'IT': 'Italy', 'JE': 'Jersey', 'JM': 'Jamaica', 'JO': 'Jordan', 'JP': 'Japan', 'KE': 'Kenya', 'KG': 'Kyrgyzstan', 'KH': 'Cambodia', 'KI': 'Kiribati', 'KM': 'Comoros', 'KN': 'Saint Kitts and Nevis', 'KP': 'Korea (Democratic People´s Republic of)', 'KR': 'Korea (Republic of)', 'KW': 'Kuwait', 'KY': 'Cayman Islands', 'KZ': 'Kazakhstan', 'LA': 'Lao People´s Democratic Republic', 'LB': 'Lebanon', 'LC': 'Saint Lucia', 'LI': 'Liechtenstein', 'LK': 'Sri Lanka', 'LR': 'Liberia', 'LS': 'Lesotho', 'LT': 'Lithuania', 'LU': 'Luxembourg', 'LV': 'Latvia', 'LY': 'Libya', 'MA': 'Morocco', 'MC': 'Monaco', 'MD': 'Moldova (Republic of)', 'ME': 'Montenegro', 'MF': 'Saint Martin (French part)', 'MG': 'Madagascar', 'MH': 'Marshall Islands', 'MK': 'North Macedonia', 'ML': 'Mali', 'MM': 'Myanmar', 'MN': 'Mongolia', 'MO': 'Macao', 'MP': 'Northern Mariana Islands', 'MQ': 'Martinique', 'MR': 'Mauritania', 'MS': 'Montserrat', 'MT': 'Malta', 'MU': 'Mauritius', 'MV': 'Maldives', 'MW': 'Malawi', 'MX': 'Mexico', 'MY': 'Malaysia', 'MZ': 'Mozambique', 'NA': 'Namibia', 'NC': 'New Caledonia', 'NE': 'Niger', 'NF': 'Norfolk Island', 'NG': 'Nigeria', 'NI': 'Nicaragua', 'NL': 'Netherlands', 'NO': 'Norway', 'NP': 'Nepal', 'NR': 'Nauru', 'NU': 'Niue', 'NZ': 'New Zealand', 'OM': 'Oman', 'PA': 'Panama', 'PE': 'Peru', 'PF': 'French Polynesia', 'PG': 'Papua New Guinea', 'PH': 'Philippines', 'PK': 'Pakistan', 'PL': 'Poland', 'PM': 'Saint Pierre and Miquelon', 'PN': 'Pitcairn', 'PR': 'Puerto Rico', 'PS': 'Palestine, State of', 'PT': 'Portugal', 'PW': 'Palau', 'PY': 'Paraguay', 'QA': 'Qatar', 'RE': 'Réunion', 'RO': 'Romania', 'RS': 'Serbia', 'RU': 'Russian Federation', 'RW': 'Rwanda', 'SA': 'Saudi Arabia', 'SB': 'Solomon Islands', 'SC': 'Seychelles', 'SD': 'Sudan', 'SE': 'Sweden', 'SG': 'Singapore', 'SH': 'Saint Helena, Ascension and Tristan da Cunha', 'SI': 'Slovenia', 'SJ': 'Svalbard and Jan Mayen', 'SK': 'Slovakia', 'SL': 'Sierra Leone', 'SM': 'San Marino', 'SN': 'Senegal', 'SO': 'Somalia', 'SR': 'Suriname', 'SS': 'South Sudan', 'ST': 'Sao Tome and Principe', 'SUHH': 'U.S.S.R. (former country)', 'SV': 'El Salvador', 'SX': 'Sint Maarten (Dutch part)', 'SY': 'Syrian Arab Republic', 'SZ': 'Swaziland', 'TC': 'Turks and Caicos Islands', 'TD': 'Chad', 'TF': 'French Southern Territories', 'TG': 'Togo', 'TH': 'Thailand', 'TJ': 'Tajikistan', 'TK': 'Tokelau', 'TL': 'Timor-Leste', 'TM': 'Turkmenistan', 'TN': 'Tunisia', 'TO': 'Tonga', 'TR': 'Turkey', 'TT': 'Trinidad and Tobago', 'TV': 'Tuvalu', 'TW': 'Taiwan, Province of China[a]', 'TZ': 'Tanzania, United Republic of', 'UA': 'Ukraine', 'UG': 'Uganda', 'UM': 'United States Minor Outlying Islands', 'US': 'United States of America', 'UY': 'Uruguay', 'UZ': 'Uzbekistan', 'VA': 'Holy See', 'VC': 'Saint Vincent and the Grenadines', 'VE': 'Venezuela (Bolivarian Republic of)', 'VG': 'Virgin Islands (British)', 'VI': 'Virgin Islands (U.S.)', 'VN': 'Viet Nam', 'VU': 'Vanuatu', 'WF': 'Wallis and Futuna', 'WS': 'Samoa', 'XK': 'Kosovo', 'XXX': 'Other', 'YE': 'Yemen', 'YT': 'Mayotte', 'YUCS': 'Yugoslavia (former country)', 'ZA': 'South Africa', 'ZM': 'Zambia', 'ZW': 'Zimbabwe'}{'-1': \"don't know/no answer\", '-3': 'not applicable', '-5': 'other missing'}True270897
v251b_r366v251b_rnominalspouse/partners country of birth (ISO 3166-1 numeric code) (Q88a){4.0: ' Afghanistan', 5.0: 'M49 code: South America', 8.0: ' Albania', 10.0: ' Antarctica', 11.0: 'M49 code: Western Africa', 12.0: ' Algeria', 13.0: 'M49 code: Central America', 14.0: 'M49 code: Eastern Africa', 15.0: 'M49 code: Northern Africa', 16.0: ' American Samoa', 17.0: 'M49 code: Middle Africa', 18.0: 'M49 code: Southern Africa', 20.0: ' Andorra', 24.0: ' Angola', 28.0: ' Antigua and Barbuda', 29.0: 'M49 code: Caribbean', 30.0: 'M49 code: Eastern Asia', 31.0: ' Azerbaijan', 32.0: ' Argentina', 34.0: 'M49 code: Southern Asia', 35.0: 'M49 code: South-Eastern Asia', 36.0: ' Australia', 39.0: 'M49 code: Southern Europe', 40.0: ' Austria', 44.0: ' Bahamas', 48.0: ' Bahrain', 50.0: ' Bangladesh', 51.0: ' Armenia', 52.0: ' Barbados', 53.0: 'M49 code: Australia and New Zealand', 54.0: 'M49 code: Melanesia', 56.0: ' Belgium', 60.0: ' Bermuda', 61.0: 'M49 code: Polynesia', 64.0: ' Bhutan', 68.0: ' Bolivia, Plurinational State of', 70.0: ' Bosnia and Herzegovina', 72.0: ' Botswana', 74.0: ' Bouvet Island', 76.0: ' Brazil', 84.0: ' Belize', 86.0: ' British Indian Ocean Territory', 90.0: ' Solomon Islands', 92.0: ' Virgin Islands, British', 96.0: ' Brunei Darussalam', 100.0: ' Bulgaria', 104.0: ' Myanmar', 108.0: ' Burundi', 112.0: ' Belarus', 116.0: ' Cambodia', 120.0: ' Cameroon', 124.0: ' Canada', 132.0: ' Cabo Verde', 136.0: ' Cayman Islands', 140.0: ' Central African Republic', 143.0: 'M49 code: Central Asia', 144.0: ' Sri Lanka', 145.0: 'M49 code: Western Asia', 148.0: ' Chad', 152.0: ' Chile', 154.0: 'M49 code: Northern Europe', 156.0: ' China', 158.0: ' Taiwan, Province of China', 162.0: ' Christmas Island', 166.0: ' Cocos (Keeling) Islands', 170.0: ' Colombia', 174.0: ' Comoros', 175.0: ' Mayotte', 178.0: ' Congo', 180.0: ' Congo, the Democratic Republic of the', 184.0: ' Cook Islands', 188.0: ' Costa Rica', 191.0: ' Croatia', 192.0: ' Cuba', 196.0: ' Cyprus', 200.0: ' Czechoslovakia (former country)', 203.0: ' Czechia', 204.0: ' Benin', 208.0: ' Denmark', 212.0: ' Dominica', 214.0: ' Dominican Republic', 218.0: ' Ecuador', 222.0: ' El Salvador', 226.0: ' Equatorial Guinea', 231.0: ' Ethiopia', 232.0: ' Eritrea', 233.0: ' Estonia', 234.0: ' Faroe Islands', 238.0: ' Falkland Islands (Malvinas)', 239.0: ' South Georgia and the South Sandwich Islands', 242.0: ' Fiji', 246.0: ' Finland', 248.0: ' Åland Islands', 250.0: ' France', 254.0: ' French Guiana', 258.0: ' French Polynesia', 260.0: ' French Southern Territories', 262.0: ' Djibouti', 266.0: ' Gabon', 268.0: ' Georgia', 270.0: ' Gambia', 275.0: ' Palestine, State of', 276.0: ' Germany', 278.0: 'German Democratic Republic (former country)', 288.0: ' Ghana', 292.0: ' Gibraltar', 296.0: ' Kiribati', 300.0: ' Greece', 304.0: ' Greenland', 308.0: ' Grenada', 312.0: ' Guadeloupe', 316.0: ' Guam', 320.0: ' Guatemala', 324.0: ' Guinea', 328.0: ' Guyana', 332.0: ' Haiti', 334.0: ' Heard Island and McDonald Islands', 336.0: ' Holy See', 340.0: ' Honduras', 344.0: ' Hong Kong', 348.0: ' Hungary', 352.0: ' Iceland', 356.0: ' India', 360.0: ' Indonesia', 364.0: ' Iran, Islamic Republic of', 368.0: ' Iraq', 372.0: ' Ireland', 376.0: ' Israel', 380.0: ' Italy', 384.0: \" Côte d'Ivoire\", 388.0: ' Jamaica', 392.0: ' Japan', 398.0: ' Kazakhstan', 400.0: ' Jordan', 404.0: ' Kenya', 408.0: \" Korea, Democratic People's Republic of\", 410.0: ' Korea, Republic of', 414.0: ' Kuwait', 417.0: ' Kyrgyzstan', 418.0: \" Lao People's Democratic Republic\", 422.0: ' Lebanon', 426.0: ' Lesotho', 428.0: ' Latvia', 430.0: ' Liberia', 434.0: ' Libya', 438.0: ' Liechtenstein', 440.0: ' Lithuania', 442.0: ' Luxembourg', 446.0: ' Macao', 450.0: ' Madagascar', 454.0: ' Malawi', 458.0: ' Malaysia', 462.0: ' Maldives', 466.0: ' Mali', 470.0: ' Malta', 474.0: ' Martinique', 478.0: ' Mauritania', 480.0: ' Mauritius', 484.0: ' Mexico', 492.0: ' Monaco', 496.0: ' Mongolia', 498.0: ' Moldova, Republic of', 499.0: ' Montenegro', 500.0: ' Montserrat', 504.0: ' Morocco', 508.0: ' Mozambique', 512.0: ' Oman', 516.0: ' Namibia', 520.0: ' Nauru', 524.0: ' Nepal', 528.0: ' Netherlands', 531.0: ' Curaçao', 533.0: ' Aruba', 534.0: ' Sint Maarten (Dutch part)', 535.0: ' Bonaire, Sint Eustatius and Saba', 540.0: ' New Caledonia', 548.0: ' Vanuatu', 554.0: ' New Zealand', 558.0: ' Nicaragua', 562.0: ' Niger', 566.0: ' Nigeria', 570.0: ' Niue', 574.0: ' Norfolk Island', 578.0: ' Norway', 580.0: ' Northern Mariana Islands', 581.0: ' United States Minor Outlying Islands', 583.0: ' Micronesia, Federated States of', 584.0: ' Marshall Islands', 585.0: ' Palau', 586.0: ' Pakistan', 591.0: ' Panama', 598.0: ' Papua New Guinea', 600.0: ' Paraguay', 604.0: ' Peru', 608.0: ' Philippines', 612.0: ' Pitcairn', 616.0: ' Poland', 620.0: ' Portugal', 624.0: ' Guinea-Bissau', 626.0: ' Timor-Leste', 630.0: ' Puerto Rico', 634.0: ' Qatar', 638.0: ' Réunion', 642.0: ' Romania', 643.0: ' Russian Federation', 646.0: ' Rwanda', 652.0: ' Saint Barthélemy', 654.0: ' Saint Helena, Ascension and Tristan da Cunha', 659.0: ' Saint Kitts and Nevis', 660.0: ' Anguilla', 662.0: ' Saint Lucia', 663.0: ' Saint Martin (French part)', 666.0: ' Saint Pierre and Miquelon', 670.0: ' Saint Vincent and the Grenadines', 674.0: ' San Marino', 678.0: ' Sao Tome and Principe', 682.0: ' Saudi Arabia', 686.0: ' Senegal', 688.0: ' Serbia', 690.0: ' Seychelles', 694.0: ' Sierra Leone', 702.0: ' Singapore', 703.0: ' Slovak Republic', 704.0: ' Viet Nam', 705.0: ' Slovenia', 706.0: ' Somalia', 710.0: ' South Africa', 716.0: ' Zimbabwe', 724.0: ' Spain', 728.0: ' South Sudan', 729.0: ' Sudan', 732.0: ' Western Sahara', 740.0: ' Suriname', 744.0: ' Svalbard and Jan Mayen', 748.0: ' Swaziland', 752.0: ' Sweden', 756.0: ' Switzerland', 760.0: ' Syrian Arab Republic', 762.0: ' Tajikistan', 764.0: ' Thailand', 768.0: ' Togo', 772.0: ' Tokelau', 776.0: ' Tonga', 780.0: ' Trinidad and Tobago', 784.0: ' United Arab Emirates', 788.0: ' Tunisia', 792.0: ' Turkey', 795.0: ' Turkmenistan', 796.0: ' Turks and Caicos Islands', 798.0: ' Tuvalu', 800.0: ' Uganda', 804.0: ' Ukraine', 807.0: ' North Macedonia', 810.0: ' U.S.S.R. (former country)', 818.0: ' Egypt', 826.0: ' United Kingdom of Great Britain and Northern Ireland', 831.0: ' Guernsey', 832.0: ' Jersey', 833.0: ' Isle of Man', 834.0: ' Tanzania, United Republic of', 840.0: ' United States of America', 850.0: ' Virgin Islands, U.S.', 854.0: ' Burkina Faso', 858.0: ' Uruguay', 860.0: ' Uzbekistan', 862.0: ' Venezuela, Bolivarian Republic of', 876.0: ' Wallis and Futuna', 882.0: ' Samoa', 887.0: ' Yemen', 890.0: ' Yugoslavia (former country)', 891.0: 'Serbia and Montenegro (former country)', 894.0: ' Zambia', 915.0: ' Kosovo', 1111.0: ' Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'NaN', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True270898
v252_edulvlb367v252_edulvlbnominaleducational level spouse/partner: ESS-edulvlb coding (Q89){0.0: 'Not completed ISCED 1', 113.0: 'Completed ISCED 1', 129.0: 'short vocational ISCED 2', 212.0: 'General/pre-vocational ISCED 2 with access to 32x', 213.0: 'General ISCED 2 with access to all ISCED 3', 221.0: 'Vocational ISCED 2 without access to ISCED 3', 222.0: 'Vocational ISCED 2 with access to 32x only', 223.0: 'Vocational ISCED 2 with access to all ISCED 3', 229.0: 'short vocational ISCED 3', 311.0: 'General ISCED 3 without access to tertiary', 312.0: 'General ISCED 3 with access to non-university tertiary only', 313.0: 'General ISCED 3 with access to university', 321.0: 'Vocational ISCED 3 without access to tertiary', 322.0: 'Vocational ISCED 3 with access to non-university tertiary only', 323.0: 'Vocational ISCED 3 with access to university', 412.0: 'General ISCED 4, with access to non-university tertiary only', 413.0: 'General ISCED 4 with access to all first degrees at ISCED 6/7', 421.0: 'Vocational ISCED 4 without access to tertiary', 422.0: 'Vocational ISCED 4, with access to non-university tertiary only', 423.0: 'Vocational ISCED 4, with access to university', 510.0: \"University qualification below bachelor's degree\", 520.0: \"Non-university qualification below bachelor's degree\", 610.0: \"Non-university bachelor's degree\", 620.0: \"University bachelor's degree\", 710.0: \"Non-university master's degree\", 720.0: \"University master's degree\", 800.0: 'Doctoral degree', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3506928
f252_edulvlb_CH368f252_edulvlb_CHnominalCH MODIFIED QUESTION (WEB_GERMAN): educational level spouse/partner: ESS-edulvlb coding (Q89){0.0: 'question wording corresponds to standard', 1.0: \"2nd question part German WEB:'your' instead 'spouse/partner'.German:‘Ihr’/ 'your' same as for female partner\"}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True25012
v252_edulvlb_2369v252_edulvlb_2nominaleducational level spouse/partner: ESS-edulvlb coding two digits (Q89){0.0: 'Less than primary', 11.0: 'Primary: general education', 12.0: 'Primary: vocational programmes', 21.0: 'Lower secondary: general education', 22.0: 'Lower secondary: vocational programmes', 31.0: 'Upper secondary: general education', 32.0: 'Upper secondary: vocational programmes', 41.0: 'Post-secondary non tertiary: general education', 42.0: 'Post-secondary non tertiary: vocational programmes', 51.0: 'Short-cycle tertiary: general education', 52.0: 'Short-cycle tertiary: vocational programmes', 61.0: 'Bachelor or equivalent: general education', 62.0: 'Bachelor or equivalent: vocational programmes', 71.0: 'Master or equivalent: general education', 72.0: 'Master or equivalent: vocational programmes', 80.0: 'Doctoral or equivalent', 666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3506917
v252_edulvlb_1370v252_edulvlb_1nominaleducational level spouse/partner: ESS-edulvlb coding one digit (Q89){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3506910
v252_ISCED_3371v252_ISCED_3numericeducational level spouse/partner: ISCED-code three digit (Q89){0.0: 'Less than primary', 100.0: 'Primary', 244.0: 'General lower secondary with direct access to upper secondary', 253.0: 'Vocational lower secondary without direct access to upper secondary', 254.0: 'Vocational lower secondary with direct access to upper secondary', 343.0: 'General upper secondary without direct access to first tertiary programmes', 344.0: 'General upper secondary with direct access to first tertiary programmes', 353.0: 'Vocational upper secondary without direct access to first tertiary programmes', 354.0: 'Vocational upper secondary with direct access to first tertiary programmes', 444.0: 'General post-secondary non-tertiary with direct access to first tertiary programmes', 453.0: 'Vocational post-secondary non-tertiary without direct access to first tertiary programmes', 454.0: 'Vocational post-secondary non-tertiary with direct access to first tertiary programmes', 540.0: 'General short-cycle tertiary', 550.0: 'Vocational short-cycle tertiary', 640.0: 'Academic Bachelor’s or equivalent level', 650.0: 'Professional Bachelor’s or equivalent level', 740.0: 'Academic Master’s or equivalent level', 750.0: 'Professional Master’s or equivalent level', 800.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3506920
v252_ISCED_2372v252_ISCED_2numericeducational level spouse/partner: ISCED-code two digit (Q89){0.0: 'Pre-primary education', 10.0: 'Primary education', 24.0: 'Lower secondary general education', 25.0: 'Lower secondary vocational education', 34.0: 'Upper secondary general education', 35.0: 'Upper secondary vocational education', 44.0: 'Post-secondary non-tertiary general education', 45.0: 'Post-secondary non-tertiary vocational education', 54.0: 'Short-cycle tertiary general education', 55.0: 'Short-cycle tertiary vocational education', 64.0: 'Bachelor’s or equivalent level, academic', 65.0: 'Bachelor’s or equivalent level, professional', 74.0: 'Master’s or equivalent level, academic', 75.0: 'Master’s or equivalent level, professional', 80.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3506916
v252_ISCED_2b373v252_ISCED_2bnominaleducational level spouse/partner: ISCED-code two digit, second option (Q89){0.0: 'Less than primary', 10.0: 'Primary', 23.0: 'Lower secondary, no access to upper secondary education', 24.0: 'Lower secondary, access to upper secondary education', 33.0: 'Upper secondary, no access to upper secondary education', 34.0: 'Upper secondary, access to upper secondary education', 43.0: 'Post-secondary non-tertiary, no access to upper secondary education', 44.0: 'Post-secondary non-tertiary, access to upper secondary education', 50.0: 'Short-cycle tertiary education', 60.0: 'Bachelor’s or equivalent level', 70.0: 'Master or equivalent level', 80.0: 'Doctorate or equivalent level', 6666.0: 'Other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True3506913
v252_ISCED_1374v252_ISCED_1nominaleducational level spouse/partner: ISCED‐code one digit (Q89){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3582010
v252_EISCED375v252_EISCEDnumericeducational level spouse/partner: ES-ISCED coding (Q89){0.0: 'No formal or less than primary education', 1.0: 'I - Primary education', 2.0: 'II - Lower secondary (including vocational training that is not considered as completion of upper secondary education)', 3.0: 'IIIb - Upper secondary without access to higher education', 4.0: 'IIIa - Upper secondary with access to higher education', 5.0: 'IV - Post-secondary/advanced vocational education below bachelor’s degree level', 6.0: \"V1 - Bachelor's level\", 7.0: \"V2 - Master's and higher level\", 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True350699
v252_ISCED97376v252_ISCED97numericeducational level spouse/partner: ISCED97‐code one digit (Q89){0.0: ' 0 : Pre-primary education or none education', 1.0: ' 1 : Primary education or first stage of basic education', 2.0: ' 2 : Lower secondary or second stage of basic education', 3.0: ' 3 : (Upper) secondary education', 4.0: ' 4 : Post-secondary non-tertiary education', 5.0: ' 5 : First stage of tertiary education', 6.0: ' 6 : Second stage of tertiary education'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True350698
v252_8cat377v252_8catnumericeducational level spouse/partner: 8 categories (Q89){1.0: ' Inadequately completed elementary education', 2.0: ' Completed (compulsory) elementary education', 3.0: ' Incomplete secondary school: technical/vocational type', 4.0: ' Complete secondary school: technical/vocational type/secondary', 5.0: ' Incomplete secondary: university-preparatory type/secondary', 6.0: ' Complete secondary: university-preparatory type/full secondary', 7.0: ' Some university without degree/higher education - lower-level tertiary', 8.0: ' University with degree/higher education - upper-level tertiary'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True350699
v252_r378v252_rnominaleducational level spouse/partner: recoded (Q89){1.0: 'lower', 2.0: 'medium', 3.0: 'higher', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True358204
v252_cs379v252_csnumericeducational level spouse/partner: country-specific, ISO 3166-1 (Q89){801.0: ' AL: Without school', 802.0: ' AL: Primary education', 803.0: ' AL: Lower secondary (Leaving certificate)', 804.0: ' AL: Upper secondary general (Maturity diploma)', 805.0: ' AL: Upper secondary vocational (2 years, certificate of high technical or vocational education)', 806.0: ' AL: Upper secondary vocational (over 2 years, Maturity diplome)', 807.0: ' AL: Post-secondary non tertiary', 808.0: ' AL: University diploma/Bachelor', 809.0: ' AL: Vocational/Professional Master', 810.0: ' AL: Post-University', 811.0: ' AL: Master of Arts', 812.0: ' AL: Master of Science', 813.0: ' AL: Long term specialization', 814.0: ' AL: Doctoral Degree', 877.0: ' AL: not applicable', 888.0: ' AL: don’t know (spontaneous)', 899.0: ' AL: no answer (spontaneous)', 3101.0: ' AZ: None', 3102.0: ' AZ: Primary education (1-4 years)', 3103.0: ' AZ: Incomplete general secondary (5-8 grades)', 3104.0: ' AZ: General secondary education (9 grades)', 3105.0: ' AZ: Complete secondary education (11 grades)', 3106.0: ' AZ: Primary vocational-professional education (Vocational school/lyceum) (1-3 years)', 3107.0: ' AZ: Secondary special education (Technical school/College) (2-4 years)', 3108.0: ' AZ: Bachelor degree (4 years)', 3109.0: ' AZ: Master degree (2 years)', 3110.0: ' AZ: Science degree (former Aspirantura/PhD): Doctor of Philosophy, Doctor of Science', 3188.0: ' AZ: don’t know (spontaneous)', 3199.0: ' AZ: no answer (spontaneous)', 4001.0: 'AT: Not completed', 4002.0: 'AT: Completed primary education', 4003.0: 'AT: Completed Lower Secundary Education, New Secundary School', 4004.0: 'AT: Completed Polytechnic School, or one-year Middle School', 4005.0: 'AT: Completed Academic Secondary School (AHS), elementary level', 4006.0: 'AT: Completed apprenticeship (final apprenticeship examination)', 4007.0: 'AT: Completed Vocational Middle School (at least 2 years, e.g. commercial school, professional school)', 4008.0: 'AT: Completed Higher School Certificate (matriculation, general qualification for university entrance)', 4009.0: 'AT: Completed degree in health or nursing care', 4010.0: 'AT: Completed Higher School Certificate in Vocational Higher School', 4011.0: 'AT: Completed advanced vocational training', 4012.0: 'AT: Completed pedagoical/educational/medical degree', 4013.0: \"AT: Completed Bachelor's degree at a university of applied sciences\", 4014.0: \"AT: Completed Bachelor's degree at a university\", 4015.0: \"AT: Completed Master's degree at a university of applied sciences\", 4016.0: \"AT: Completed Master's degree at a university of applied sciences\", 4017.0: 'AT: Completed post-graduate university courses (e.g. MBA)', 4018.0: 'AT: Completed doctorate/PhD', 4019.0: 'AT: other', 5101.0: 'AM: Never went to school', 5102.0: 'AM: Less than 4 years of education', 5103.0: 'AM: 4 years of primary education', 5104.0: 'AM: Certificate of lower secondary/ basic secondary education, 9 years', 5105.0: 'AM: Certificate of initial vocational education after lower /basic education', 5106.0: 'AM: Advanced vocational education after lower /basic education', 5107.0: 'AM: Certificate of upper secondary education, 12 years', 5108.0: 'AM: Certificate of initial vocational training after upper secondary education', 5109.0: 'AM: Advanced vocational education after upper secondary education', 5110.0: 'AM: Bachelor degree 4 years', 5111.0: 'AM: Specialist degree', 5112.0: 'AM: Master degree 2 years', 5113.0: 'AM: Phd and habilitation', 7001.0: 'BA: No school (up to three grades of elementary school)', 7002.0: 'BA: Unfinished elementary school (4 to 7 grades)', 7003.0: 'BA: Completed elementary school', 7004.0: 'BA: Secondary vocational school up to 1-2 years', 7005.0: 'BA: Secondary vocational school up to 3 years', 7006.0: 'BA: Technical and related secondary vocational schools up to 4 years or more', 7007.0: 'BA: High school', 7008.0: 'BA: Professional study up to 2-3 years', 7009.0: \"BA: Undergraduate university study - for the academic title 'baccalaureus' (3-4 years); Art academy (undergraduate stud\", 7010.0: 'BA: Specialist graduate professional study (4-5 years); Specialist in the profession', 7011.0: 'BA: Graduate university study (4-6 years) - old program', 7012.0: \"BA: Master's degree (5 years); Art academy (graduate study)\", 7013.0: \"BA: Master's degree of Science or completed postgraduate specialist studies\", 7014.0: 'BA: Postgraduate Doctorate of Science', 10001.0: 'BG: Incomplete primary education', 10002.0: 'BG: Primary education', 10003.0: 'BG: Basic education', 10004.0: 'BG: Secondary general education', 10005.0: 'BG: Secondary special education Language Schools, Mathematics and Natural Science', 10006.0: 'BG: Secondary special education Arts and Sports', 10007.0: 'BG: Secondary vocational education', 10008.0: 'BG: Semi-higher education', 10009.0: 'BG: College - Professional bachelor', 10010.0: 'BG: Higher education - Bachelor', 10011.0: 'BG: Higher education - Master', 10012.0: 'BG: Doctor of science', 11201.0: 'BY: No education', 11202.0: 'BY: Primary school', 11203.0: 'BY: Certificate of lower secondary general education', 11204.0: 'BY: Certificate of upper general secondary education', 11205.0: 'BY: 1-2 year vocational education after lower secondary education', 11206.0: 'BY: Vocational training with upper secondary general training in parallel', 11207.0: 'BY: Certificate of upper vocational education with upper secondary general education', 11208.0: \"BY: Bachelor's Degree\", 11209.0: \"BY: Higher education, Specialist's Diploma\", 11210.0: \"BY: Master's degree\", 11211.0: 'BY: PhD', 11212.0: 'BY: Habilitation', 19101.0: 'HR: No school (up to three grades of elementary school)', 19102.0: 'HR: Unfinished elementary school (4 to 7 grades)', 19103.0: 'HR: Completed elementary school', 19104.0: 'HR: Secondary vocational school up to 1-2 years', 19105.0: 'HR: Secondary vocational school up to 3 years', 19106.0: 'HR: Technical and related secondary vocational schools up to 4 years or more', 19107.0: 'HR: High school', 19108.0: 'HR: Professional study up to 2-3 years', 19109.0: \"HR: Undergraduate university study; for academic title 'baccalaureus' (3-4 years); Art academy (undergraduate study)\", 19110.0: 'HR: Specialist graduate professional study (4-5 years); Specialist in the profession', 19111.0: 'HR: Graduate university study (4-6 years) - old program', 19112.0: \"HR: Master's degree (5 years); Art academy (graduate study)\", 19113.0: \"HR: Master's degree of Science or completed postgraduate specialist studies\", 19114.0: 'HR: Postgraduate Doctorate of Science', 20301.0: 'CZ Incomplete elementary education, unfinished 1st level (less than 5 grades/years)', 20302.0: 'CZ: Incomplete basic education (5+ years of schooling, only primary school completed, SZŠ, ZZŠ, general school)', 20303.0: 'CZ: Basic education (bougeois school)', 20304.0: 'CZ: Secondary education with an apprenticeship certificate, Secondary education without school-leaving examination', 20305.0: 'CZ: Secondary education without leaving examination followed by further studies with final exam (teaching, retraining)', 20306.0: 'CZ: Education with GCSE, full secondary vocational education with GCSE', 20307.0: 'CZ: Secondary educ. with school-leaving exam followed by studies with final exam (post-gr., follow-up courses etc)', 20308.0: 'CZ: Secondary general education with school-leaving examination (grammar school)', 20309.0: 'CZ: Post-secondary education with diploma: Higher vocational school (DiS), 5th and 6th year of conservatory (discharge)', 20310.0: \"CZ: Bachelor's degree\", 20311.0: \"CZ: Master's degree education (Mgr., Ing., Ing., MUDr., MDDr., MVDr., …)\", 20312.0: 'CZ: Doctoral studies, postgraduate education (Ph.D., Th.D., CSc, ...)', 20801.0: ' DK: municipal primary and lower secondary school: 5th grade or lower', 20802.0: ' DK: municipal primary and lower secondary school: 6th grade to 8th grade', 20803.0: ' DK: municipal primary and lower secondary school: 9th grade to 10th grade', 20804.0: \" DK: '(Upper) Secondary Education: Gymnasium, Higher Preparatory Examination (HF), Higher Commercial Examination Program\", 20805.0: ' DK: Semiskilled worker courses and short vocational education (less than 2 years)', 20806.0: ' DK: Vocational and technical (upper) secondary education', 20807.0: ' DK: Short-cycle higher non-university programmes (2-3 years)', 20808.0: ' DK: medium-cycle university and non-university programmes, proffesional bachelor degree (3-4 years)', 20809.0: ' DK: long-cycle university programmes, 1 part - university bachelor degree', 20810.0: ' DK: long-cycle university programmes, 2. part Kandidat degree (Masters) (5-6 years)', 20811.0: ' DK: Licentiat (closed research education program)', 20812.0: ' DK: Research Education, PhD., Doctor', 20813.0: ' DK: other', 23301.0: 'EE: Without primary education (less than 4 grades)', 23302.0: 'EE: Completed primary education (4-6 grades)', 23303.0: 'EE: Vocational education without completed primary education', 23304.0: 'EE: Completed basic education (7-9 grades)', 23305.0: 'EE: Vocational secondary education after basic education (training programme under 2 years)', 23306.0: 'EE: Completed secondary education', 23307.0: 'EE: Vocational secondary education after basic education (training programme 2 years or more)', 23308.0: 'EE: Vocational secondary education with secondary education or vocational secondary education (tehnical education) afte', 23309.0: 'EE: Vocational-secondary education (tehnical education) after secondary education', 23310.0: 'EE: Vocational university after secondary education diploma (up to 2 years trainings, but not Bachelor of Arts)', 23311.0: 'EE: Higher vocational education diploma or Bachelor of Arts degree (3-4 years of trainings)', 23312.0: 'EE: University Bachelor of Arts degree (3-4 years of trainings', 23313.0: 'EE: Master of Arts from Vocational university', 23314.0: 'EE: Master of Arts\\xa0(3+2, 4+2 or by 5+4 system, incl. integrated BA and MA), higher education started before 1992 (speci', 23315.0: \"EE: Doctor's degree\", 24601.0: ' FI: Less than primary school (grades 1-6) or less than comprehensive school', 24602.0: \" FI: Grades 1-6 of comprehensive school, or primary school or people's school\", 24603.0: ' FI: Grades 7-9 of comprehensive school, or middle school', 24604.0: ' FI: General upper secondary school, matriculation examination', 24605.0: ' FI: Vocational upper secondary qualification, further vocational qualification', 24606.0: ' FI: Both matriculation examination and vocational qualification', 24607.0: ' FI: Specialist vocational qualification', 24608.0: ' FI: Post-secondary level vocational qualification (old)', 24609.0: \" FI: Bachelors' degree in universities of applied sciences (polytechnic)\", 24610.0: \" FI: Bachelors' degree in university\", 24611.0: \" FI: Master's degree in universities of applied sciences (polytechnic)\", 24612.0: \" FI: Master's degree in university\", 24613.0: ' FI: Licentiate degree', 24614.0: ' FI: Doctoral degree', 24615.0: ' FI: other', 25001.0: ' FR: no schooling or not completed primary education', 25002.0: \" FR: Completed primary education, without the final certificate (Certificat d'études primaires=an old qualification off\", 25003.0: \" FR: Completed primary education, with the Certificat d'études primaires\", 25004.0: \" FR: Secondary education 1st cycle, without the final certificate (Brevet élémentaire, Brevet d'étude du premier cycl\", 25005.0: \" FR: Secondary education 1st cycle, with the final certificate (Brevet élémentaire, Brevet d'étude du premier cycle,\", 25006.0: ' FR: Secondary education 2nd cycle, without the final exam (Baccalauréat)', 25007.0: \" FR: Certificate of vocational ability : Certificat d'Aptitude Professionnelle (CAP) or Brevet d'Etudes Professionnelles\", 25008.0: ' FR: Vocational qualification in care (home care, children care, health care)', 25009.0: ' FR: Vocational Baccalaureat', 25010.0: ' FR: Technological Baccalaureat or equivalent diploma', 25011.0: ' FR: General Baccalaureat or equivalent diploma', 25012.0: ' FR: Certificate of ability in Law, Diploma allowing admission in tertiary education', 25013.0: ' FR: Qualifications of vocational secondary education in health and care institutions (like Moniteur éducateur and equi', 25014.0: ' FR: University education, 1st cycle Diploma in general tertiary education (2 years), classes for competitive entrance', 25015.0: ' FR: Diploma in Technological Studies , Diploma of Advanced Technician', 25016.0: ' FR: Qualification in paramedical and social sectors (social assistant, etc,)', 25017.0: ' FR: Vocational Bachelor (University education, 1st graduation and apprenticeship)', 25018.0: ' FR: Bachelor (University education, 2nd cycle, 1st year and apprenticeship)', 25019.0: ' FR: Engineer Degree', 25020.0: ' FR: Vocational Master Degree', 25021.0: ' FR: Intermediate Master degree (university education, 2nd cycle, 2nd year), qualification of primary and secondary educ', 25022.0: ' FR: Research Master Degree, qualification of university education teachers', 25023.0: ' FR: Qualifications of architects, veterinaries, notaries', 25024.0: ' FR: Diplôma from selective “grandes écoles”', 25025.0: ' FR: Doctorate in medecine, odontology, pharmacy', 25026.0: ' FR: Doctorate', 26801.0: 'GE: No education', 26802.0: 'GE: Less than 6 years primary education', 26803.0: 'GE: Primary education completed, 6 years', 26804.0: 'GE: Basic/ lower general education certificate, 9 years', 26805.0: 'GE: Upper secondary general education certificate', 26806.0: 'GE: Professional diploma level 1, 2, or 3 (Vocational Education certificate, before 2010)', 26807.0: 'GE: Professional diploma level 4/5 (Secondary Vocational Educ. Certificate pre-2010, Certified Diploma 2008-2010)', 26808.0: 'GE: Interim qualification, short cycle tertiary education', 26809.0: 'GE: Bachelor degree', 26810.0: 'GE: Master degree', 26811.0: 'GE: Specialist studies', 26812.0: 'GE: Doctoral degree', 34801.0: 'HU: Never attented school; 1-3 years of primary school or equivalent', 34802.0: 'HU: 4-7 years of primary school or equivalent', 34803.0: 'HU: Completed primary school or equivalent', 34804.0: 'HU: Vocational school', 34805.0: 'HU: Vocational training after the 10. grade', 34806.0: 'HU: Completed secondary vocational education with school-leaving exam', 34807.0: 'HU: Completed secondary general education (Gymnasium) with school-leaving exam', 34808.0: 'HU: Post-secondary, mon-tertiary vocational education and training (E.g. technical school)', 34809.0: 'HU: Short-cycle tertiary level vocational education and training (VET)', 34810.0: \"HU: College degree or college bachelor's degree - BA/BSc\", 34811.0: \"HU: University bachelor's degree - BA/BSc\", 34812.0: \"HU: College master's degree - MA/MSc\", 34813.0: \"HU: University degree or university master's degree - MA/MSc\", 34814.0: 'HU: Doctoral degree', 35201.0: 'IS: Less than primary education', 35202.0: 'IS: Primary education', 35203.0: 'IS: Elementary school, 14–15 years of age', 35204.0: 'IS: National test', 35205.0: 'IS: Elementary school, 15–16 years of age (compulsory education)', 35206.0: 'IS: Elementary school, 16–17 years of age', 35207.0: 'IS: Vocational education at the lower secondary level', 35208.0: 'IS: Post-secondary non-tertiary education', 35209.0: 'IS: Other post-secondary, non-tertiary vocational education', 35210.0: 'IS: Upper secondary art education, 2+ years', 35211.0: 'IS: Certified trades, school diploma', 35212.0: 'IS: Matriculation examination', 35213.0: 'IS: Upper secondary education', 35214.0: 'IS: Master of a certified trade', 35215.0: 'IS: Tertiary general education, 2–3 years', 35216.0: 'IS: Tertiary vocational education, 2–3 years', 35217.0: 'IS: Bachelor’s or equivalent level', 35218.0: 'IS: Master’s or equivalent level', 35219.0: 'IS: Doctoral or equivalent level', 38001.0: ' IT: No title', 38002.0: ' IT: Elementary school diploma', 38003.0: ' IT: Vocational training', 38004.0: ' IT: Middle school diploma', 38005.0: ' IT: Post-obligation vocational regional qualification', 38006.0: \" IT: Vocational institute diploma (2 or 3 years), including art teacher diploma, teacher's training school diploma and n\", 38007.0: ' IT: High school diploma (5 years), technical or vocational institute, including art institute five years diploma', 38008.0: ' IT: High school diploma (4 or 5 years), classical, scientific, linguistic or psyco-pedagogical, musical lyceum, includi', 38009.0: ' IT: Post-(high school) diploma specialization, post-(high school) diploma vocational regional qualification, certificat', 38010.0: ' IT: Former system academic diploma (2 or 3 years), including higher institute of physical education, social service and', 38011.0: ' IT: Tertiary education not academic diploma: Music Conservatory, Academy of Fine Arts and similar', 38012.0: ' IT: Three years or first level degree (bachelor)', 38013.0: ' IT: First level specialization degree', 38014.0: \" IT: Former system degree, master's degree, single cycle degree\", 38015.0: ' IT: Second level specialization degree', 38016.0: ' IT: Post-graduate specialization (1 or 2 years)', 38017.0: ' IT: Post-graduate specialization (3 or 4 years), including medical specialization', 38018.0: ' IT: Doctoral degree', 42801.0: ' LV: Has not attended school', 42802.0: ' LV: Incompete primary education ( 6 grades)', 42803.0: ' LV: General primary education', 42804.0: ' LV: Basic vocational education', 42805.0: ' LV: Vocational education (without secondary) (1 year)', 42806.0: ' LV: Vocational education (without secondary) (3 years)', 42807.0: ' LV: General secondary education', 42808.0: ' LV: Vocational secondary education', 42809.0: ' LV: Vocational (not higher) education after general secondary education', 42810.0: ' LV: 1st level professional/ vocational higher education (college)', 42811.0: \" LV: Bachelor's degree (professional)\", 42812.0: \" LV: Bachelor's degree (academic)\", 42813.0: \" LV: Master's degree (professional)\", 42814.0: \" LV: Master's degree (academic)\", 42815.0: ' LV: Higher education obtained during the Soviet era', 42816.0: ' LV: Doctoral degree', 44000.0: ' LT: Less than primary', 44001.0: ' LT: Primary', 44002.0: ' LT: Lower general vocational', 44003.0: ' LT: General/ lower secondary', 44004.0: ' LT: General vocational', 44005.0: ' LT: Lower vocational after general', 44006.0: ' LT: Vocational after general', 44007.0: ' LT: Secondary', 44008.0: ' LT: Vocational with secondary', 44009.0: ' LT: Vocational after secondary', 44010.0: ' LT: Upper general and secondary vocational', 44011.0: ' LT: Upper secondary vocational', 44012.0: ' LT: Higher non university', 44013.0: ' LT: Higher university education (BA)', 44014.0: ' LT: Higher university education (MA)', 44015.0: ' LT: Higher university integrated education (I and II stages - 6 years)', 44016.0: ' LT: Doctoral studies and diploma', 49901.0: ' ME: No education', 49902.0: ' ME: Completed 4 years of primary education', 49903.0: ' ME: Completed lower secondary education', 49904.0: ' ME: 1-2 years vocational training', 49905.0: ' ME: Completed high school lasting three years', 49906.0: ' ME: Certificate of upper secondary vocational education (4 years)', 49907.0: ' ME: Secondary general (grammar schools, 4 years)', 49908.0: ' ME: Vocational exam', 49909.0: ' ME: Primary level diploma (after two or three years of bachelor level pre-Bologne reform)', 49910.0: ' ME: Completed two years of higher education that provides basic certificate but not entrance to MA studies', 49911.0: ' ME: Vocational studies (in duration of three years)', 49912.0: ' ME: Bachelor studies in duration of 3 years', 49913.0: ' ME: Specialization studies or four year studies in pre-Bologne system', 49914.0: ' ME: Master studies in duration of one year; Integrated studies (five year studies); Specialization studies', 49915.0: ' ME: Magister studies, Studies of medicine (in duration of 6 years, in old system), Specialisation', 49916.0: ' ME: PhD', 52801.0: 'NL: No completed primary education', 52802.0: 'NL: Primary education', 52803.0: \"NL: Pre-vocational program ('vmbo level 1, 2 or 3' or 'lbo') or comparable\", 52804.0: \"NL: Preparatory secondary vocational education ('mavo' (previous 'vmbo') or 'vmbo level 4') or comparable\", 52805.0: 'NL: Intermediate vocational educational, level 1 (duration 2 year)', 52806.0: \"NL: Senior general secondary school ('havo') or comparable\", 52807.0: \"NL: Pre-university education ('vwo' or gymnasium) or comparable\", 52808.0: \"NL: kmbo', 'meao', 'mts' or comparable (duration 2-3 years)\", 52809.0: 'NL: Intermediate vocational education , levels 2 and 3 (duration 2-3 years)', 52810.0: 'NL: Intermediate vocational education , level 4 (duration 4 years)', 52811.0: \"NL: Intermediate vocational education plus (for people that completed 'havo')\", 52812.0: 'NL: First year of university, Bachelor (propaedeutics)', 52813.0: 'NL: Shorter higher vocational education, shorter University of Applied Sciences (duration 2 or 3 years)', 52814.0: \"NL: Higher vocational education / University of Applied Sciences, Bachelor's degree or comparable\", 52815.0: \"NL: University, Bachelor's degree\", 52816.0: \"NL: Higher vocational education / University of Applied Sciences, Master's degree or comparable\", 52817.0: \"NL: University, Master's degree or comparable\", 52818.0: 'NL: University, doctoral degree (promotion)', 57801.0: ' NO: No education and/or preschool education', 57802.0: ' NO: Primary school (Elementary school. First part of compulsory education)\\xa0', 57803.0: ' NO: Lower secondary school (Elementary school. Second part of compulsory education)', 57804.0: ' NO: Upper secondary school basic (including vk1, folkehøgskole, realskole)', 57805.0: ' NO: Upper secondary, complete graduation (including vk2, vk3, gymnas)', 57806.0: ' NO: Supplementary program for general university admissions certification', 57807.0: ' NO: University and university college, lower degree (including B.A., cand.mag)', 57808.0: ' NO: University and university college, higher degree (including M.A.)', 57809.0: ' NO: Scientific degree (Doctoral degree, Ph.D.)', 57810.0: ' NO: Primary education', 57824.0: ' NO: Lower secondary education - general', 57825.0: ' NO: Lower secondary education - vocational', 57834.0: ' NO: Upper secondary education - general', 57835.0: ' NO: Upper secondary education - vocational', 57844.0: ' NO: Post-secondary non-tertiary education - general', 57845.0: ' NO: Post-secondary non-tertiary education - vocational', 57854.0: ' NO: Short-cycle tertiary education - general', 57855.0: ' NO: Short-cycle tertiary education - vocational', 57856.0: ' NO: Short-cycle tertiary education - orientation unspecified', 57864.0: ' NO: Bachelor’s or equivalent level - academic', 57865.0: ' NO: Bachelor’s or equivalent level - professional', 57866.0: ' NO: Bachelor’s or equivalent level - orientation unspecified', 57874.0: ' NO: Master’s or equivalent level - academic', 57875.0: ' NO: Master’s or equivalent level - professional', 57876.0: ' NO: Master’s or equivalent level - orientation unspecified', 57884.0: ' NO: Doctoral or equivalent level - academic', 57885.0: ' NO: Doctoral or equivalent level - professional', 57886.0: ' NO: Doctoral or equivalent level - orientation unspecified', 61601.0: 'PL: primary education not completed', 61602.0: 'PL: primary education (6 grades or 4 grades)', 61603.0: 'PL: primary education', 61604.0: 'PL: lower secondary', 61605.0: 'PL: basic vocational education in agriculture', 61606.0: 'PL: basic vocational education', 61607.0: 'PL: basic vocational education', 61608.0: 'PL: upper secondary education without A-level diploma', 61609.0: 'PL: upper secondary education with A-level diploma', 61610.0: 'PL: upper secondary vocational or technical education', 61611.0: 'PL: upper secondary vocational or technical education with A-level diploma', 61612.0: 'PL: diploma of technician or post secondary education', 61613.0: \"PL: post secondary education in teachers' college\", 61614.0: \"PL: BA or engineer's diploma\", 61615.0: \"PL: MA or doctor's diploma\", 61616.0: \"PL: PhD, assistant professor, professor's title\", 61617.0: 'PL: other', 62001.0: ' PT: None', 62002.0: ' PT: Basic Level 1 (until 4th grade, primary education)', 62003.0: ' PT: Basic level 2 (until 6th grade, 1st cycle of former comercial or industrial high school)', 62004.0: ' PT: Type 1 education and formation courses. Attribution of level 1 professional qualification diploma', 62005.0: ' PT: Basic Level 3 (Certificate of conclusion of one of the following grades: 9th grade; former 5th grade of high school', 62006.0: ' PT: Type 2 education and formation courses. Attribution of level 2 professional qualification diploma', 62007.0: ' PT: Types 3 and 4 education and formation courses. Attribution of level 2 professional qualification diploma', 62008.0: ' PT: Secondary Level - Scientific-Humanistic studies (certificate of conclusion of one of the following grades: 12th gra', 62009.0: ' PT: Secondary Level -technologic and artistic studies (visual and audiovisual arts, dance and music), professional cour', 62010.0: ' PT: Technologic specialisation course. Attribution of Thecnologic specialisation diploma', 62011.0: ' PT: Polytechnic superior level:3 years bacalaureat (primary school teachers, social service, agricultural manager); f', 62012.0: ' PT: Polytechnic superior level:3-4 years graduation', 62013.0: ' PT: University superior level: 3-4 years graduation: 4 years two-stage graduation', 62014.0: ' PT: Post-graduation: post-graduation specialisation without degree atribution, MBA', 62015.0: ' PT: University superior level: gradution with more than 4 years: 5 years two-stage graduation', 62016.0: ' PT: Master degree (inc. integrated master)', 62017.0: ' PT: PhD', 64200.0: ' RO: No school at all', 64201.0: ' RO: Unfinished primary school', 64202.0: ' RO: Finished primary school', 64203.0: ' RO: Unfinished gymnasia', 64204.0: ' RO: Graduated gymnasia', 64205.0: ' RO: Apprentice (complementary) school', 64206.0: ' RO: School of Arts and Crafts', 64207.0: ' RO: School of Arts and Crafts - year of completion', 64208.0: ' RO: Professional school, less than 2 years', 64209.0: ' RO: Professional school, 2-4 years', 64210.0: ' RO: Unfinished High School', 64211.0: ' RO: Completed Theoretical High School (Baccalaureate Diploma)', 64212.0: ' RO: Completed Technological / Industrial High School (Baccalaureate Diploma)', 64213.0: ' RO: Foreman school without Baccalaureate', 64214.0: ' RO: Foreman school with Baccalaureate', 64215.0: ' RO: Post-highschool without Baccalaureate', 64216.0: ' RO: Post-highschool with Baccalaureate', 64217.0: ' RO: Unfinished university studies', 64218.0: ' RO: Sub-engineers or College', 64219.0: ' RO: BA (graduated university): 3 years', 64220.0: ' RO: BA (graduated university): 4 years', 64221.0: ' RO: BA (graduated university): 5 years', 64222.0: ' RO: BA (graduated university): 6 years', 64223.0: ' RO: Master', 64224.0: ' RO: PhD', 64301.0: 'RU: Did not study in school or completed 1-2 grades on school only (incomplete primary school)', 64302.0: 'RU: Graduated 3-7 grades of secondary school without attestat on basic general education', 64303.0: 'RU: Attestat of basic general educ.–complete 7 grade (pre 1958); 8 gr.(1960-1980); 9 gr.(modern system); no profes. ed', 64304.0: 'RU: Completed general secondary educ. (10 grade by old system,11 grade by new), got attestat; no professional educ.', 64305.0: 'RU: Got primary professional educ.–grad. PTU,FSU,FSO, profes.-techn. lyceum; no attestat of compl. sec. gen. educ.(<2y', 64306.0: 'RU: Got primary professional educ.– grad. PTU, professional-techn. lyceum, with attestat of completed sec. educ.(1-3 y', 64307.0: 'RU: Got secondary professional education – graduated technikum, uchilishe, college (2-4 years of study)', 64308.0: 'RU: Got diploma of bachelor in college after 4 years of education on two-stage new education system', 64309.0: 'RU: Got diploma of master in college after additional 2 years of education on two-stage new education system', 64310.0: 'RU: Completed high education by 5-6-years system (diploma of specialist)', 64311.0: 'RU: Scientific degree (candidate, doctor of sciences)', 68801.0: ' RS: No education (under 3rd grade)', 68802.0: ' RS: Primary education lower cycle (4th – 7th grade)', 68803.0: ' RS: Primary education upper cycle (8th grade)', 68804.0: ' RS: Secondary vocational 3 yrs', 68805.0: ' RS: Secondary vocational 4 yrs', 68806.0: ' RS: Secondary general (grammar schools)', 68807.0: ' RS: 1-2 years vocational training', 68808.0: ' RS: Higher schools', 68809.0: ' RS: University: Graduate studies', 68810.0: ' RS: Postgraduate studies: Specialist studies', 68811.0: ' RS: Postgraduate studies: Magister studies (outdated)', 68812.0: ' RS: Postgraduate studies: Master studies', 68813.0: ' RS: PhD studies/ Doctor’s Degree', 70301.0: 'SK: Not completed first stage of elementary school (not completed primary level of education)', 70302.0: 'SK: Not completed second stage of elementary school (not completed lower secondary level of education)', 70303.0: 'SK: Completed lower secondary educ.(completed 8/9 y. of elementary school or courses to complete lower secondary educ.)', 70304.0: ' SK: Practical (girl) school, two-years training programmes, requalification courses without vocational certificate', 70305.0: 'SK: secondary vocational school or sec. voc. training institution or sec. voc. school without leaving exam (no maturita)', 70306.0: 'SK: Secondary vocational school with leaving exam (with maturita), secondary vocat. training institution (with maturita)', 70307.0: 'SK: Eight year grammar school - 4 year grammar school', 70308.0: 'SK: Complementary study', 70309.0: \"SK: Complementary 'postgraduate' pedagogical study\", 70310.0: \"SK: 'postgraduate' vocational study\", 70311.0: 'SK: Postgraduate specialised study with leaving certificate, Dance conservatory', 70312.0: 'SK: Secondary vocational schoool with leaving examination (maturita) - six year study', 70313.0: 'SK: Bachelors degree', 70314.0: \"SK: Master degree (engineering study, 'small' doctorate)\", 70315.0: 'SK: postgraduate pedagogical study, teaching certificate for university graduates', 70316.0: 'SK: PhD study, doctoral degree', 70501.0: 'SI: Without school education', 70502.0: 'SI: Incomplete primary education', 70503.0: 'SI: Primary education', 70504.0: 'SI: Lower or upper secondary vocational education', 70505.0: 'SI: Secondary vocational education', 70506.0: 'SI: Secondary general education', 70507.0: 'SI: Higher vocational education, post-secondary education (2 years)', 70508.0: 'SI: Higher vocational education - 1. Bologna level.', 70509.0: 'SI: Higher education university education', 70510.0: \"SI: Bologna master's degree\", 70511.0: 'SI: Specialization', 70512.0: \"SI: Master's degree\", 70513.0: 'SI: phD', 72401.0: 'ES: No studies', 72402.0: 'ES: Not completed primary studies', 72403.0: 'ES: Old Primary School (Before 1970)', 72404.0: 'ES: Up to the 5th course of EGB (Basic General Education). From 70s to 90s', 72405.0: 'ES: Up to the 6th course of Primary School', 72406.0: 'ES: Primary School in Music and Dance', 72407.0: 'ES: Elementary High School (Before 1970)', 72408.0: 'ES: Up to the 8th course of EGB (Basic General Education). From 70s to 90s', 72409.0: 'ES: Compulsory High School', 72410.0: 'ES: High School (From 70s to 90s)', 72411.0: 'ES: Pre-University Studies (before 90s)', 72412.0: 'ES: Not compulsory High School', 72413.0: 'ES: Vocational training (initiation)', 72414.0: 'ES: Vocational training (initiation) (old Law)', 72415.0: 'ES: Vocational training (first grade) (old Law)', 72416.0: 'ES: Vocational training (first grade)', 72417.0: 'ES: Vocational training (medium grade, technical in various professions such as administrative or mechanic )', 72418.0: 'ES: Vocational training (medium grade, arts and design)', 72419.0: 'ES: Vocational training (medium grade, music and dance)', 72420.0: 'ES: Vocational training (high grade, industrial) (old Law)', 72421.0: 'ES: Vocational training (high grade, general) (old Law)', 72422.0: 'ES: Vocational training (high grade, general)', 72423.0: 'ES: Vocational training (high grade in arts)', 72424.0: 'ES: Medium Tertiary studies (nursery, school teacher, social worker)', 72425.0: 'ES: Medium Tertiary studies ( building engineer, industrial or business expert)', 72426.0: 'ES: Long tertiary studies', 72427.0: 'ES: Phd', 72428.0: 'ES: Other (specify)', 75201.0: ' SE: not completed ISCED level 1', 75202.0: ' SE: ISCED 1, completed primary education', 75203.0: ' SE: Qualification from general ISCED 2A programmes, access to ISCED 3A general or all 3', 75204.0: ' SE: Old version of vocational high school', 75205.0: ' SE: Old and current version of high school education that gives access to higher education', 75206.0: ' SE: Old version of mainly vocational high school with limited access to higher education', 75207.0: ' SE: Vocational high school', 75208.0: ' SE: Technical high school, formerly 4 years at high school, currently 3 years at high school and 4th year at university', 75209.0: ' SE: Degree from one year of studies at university college.', 75210.0: ' SE: Vocational degree, qualification obtained after high school graduation, from vocational training institutes', 75211.0: ' SE: Vocational degree, obtained at university or university college, e.g. old professional nursing programmes', 75212.0: ' SE: Vocational degree, obtained after high school graduation, longer programme 2-3 years from vocational training insti', 75213.0: \" SE: Bachelor's degree or professional degree from a university college\", 75214.0: \" SE: Bachelor's degree or professional degree from a university\", 75215.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75216.0: ' SE: Masters degree from university college', 75217.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75218.0: ' SE: Masters degree from university', 75219.0: ' SE: Research degree, licantiate degree, a sort of half-way doctoral degree, old degree that is not often used', 75220.0: ' SE: Research degree, phd', 75601.0: 'CH: Incompleted primary school', 75602.0: 'CH: Primary school', 75603.0: 'CH: Secondary education (first stage)', 75604.0: 'CH: Additional year of secondary education, preparation for vocational training', 75605.0: 'CH: General training school (2-3 years)', 75606.0: 'CH: Baccalaureate preparing for university', 75607.0: 'CH: Baccalaureate for adults or apprenticeship after Baccalaureate', 75608.0: 'CH: Diploma for teaching in primary school or preprimary school', 75609.0: 'CH: Vocational baccalaureate', 75610.0: 'CH: Vocational baccalaureate for adults', 75611.0: 'CH: Elementary vocational training (enterprise and school, 1-2 year)', 75612.0: 'CH: Apprenticeship (vocational training, dual system, 3-4 years)', 75613.0: 'CH: Second vocational training (or apprenticeship as second education)', 75614.0: 'CH: Advanced vocational qualification (specialization exam, federal certif. or dipl. of advanced vocational training)', 75615.0: 'CH: Higher vocational training (high school diploma - technical, administration, health, social work, applied arts)', 75616.0: 'CH:Higher vocational training (diploma of some specific high schools withrecognition of tertiary level)', 75617.0: 'CH: University of applied science and pedagogical university (Bachelor)', 75618.0: 'CH: University of applied science and pedagogical university (Master)', 75619.0: 'CH: University diploma (intermediary level)', 75620.0: 'CH: University diploma and post-graduate (including technical) (Bachelor and short university degree)', 75621.0: 'CH: University diploma and post-graduate (including technical) (degree requiring more than 4 years)', 75622.0: 'CH: University diploma and post-graduate (including technical) (Master)', 75623.0: 'CH: Doctoral degree', 75624.0: 'CH: other', 80400.0: ' UA: Incomplete primary secondary education (less than 4 classes)', 80401.0: ' UA: Primary secondary education (1- 3(4) classes)', 80402.0: ' UA: Basic secondary education (certificate for 8(9) class)', 80403.0: ' UA: Technical-vocational education based on basic secondary education (no certificate of complete secondary education)', 80404.0: ' UA: Technical-vocational education based on of basic general secondary (certificate of general secondary education and', 80405.0: ' UA: Complete secondary education (certificate of general secondary education of 10(11) classes)', 80406.0: ' UA: Additional training training on the basis of general secondary education (vocational and general educational course', 80407.0: ' UA: Technical-vocational education on the basis of general secondary education', 80408.0: ' UA: Professional pre-higher education (diploma of junior specialist)', 80409.0: \" UA: Basic higher education (bachelor's degree)\", 80410.0: ' UA: Full higher education (specialist)', 80411.0: ' UA: Full higher education (Master or equivalent)', 80412.0: ' UA: Academic degree (candidate, doctor, PhD)', 80701.0: 'MK: Without education', 80702.0: 'MK: Completed primary education (4 years of primary school)', 80703.0: 'MK: Completed primary and lower secondary education', 80704.0: 'MK: Completed upper secondary education, vocational training - 2 years', 80705.0: 'MK: Completed upper secondary education, vocational training - 3 years', 80706.0: 'MK: Completed upper secondary education, vocational training - 4 years', 80707.0: 'MK: Completed upper secondary education, general (high school) - 4 years', 80708.0: 'MK: Completed further education - short cycle university education - 2 years', 80709.0: 'MK: Bachelor degree - 3 years', 80710.0: 'MK: Bachelor degree - 4 years', 80711.0: 'MK: Completed postgraduate studies, specialist studies - 1 year', 80712.0: 'MK: Completed postgraduate studies, specialist studies - 2 years', 80713.0: 'MK: Completed postgraduate studies, master studies - 1 year', 80714.0: 'MK: Completed postgraduate studies, master studies - 2 years', 80715.0: 'MK: Doctoral degree, completed doctorate - 5 years', 80716.0: 'MK: Doctoral degree, completed doctorate (PhD studies) - 3 years', 80788.0: 'MK: don’t know (spontaneous)', 80799.0: 'MK: no answer (spontaneous)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True33460521
v252_cs_DE1380v252_cs_DE1numericDE COUNTRY-SPECIFIC: educational level spouse/partner (Q89), SCHOOL{-10.0: 'multiple answers Mail', 27601.0: 'Primary school not completed', 27602.0: 'Primary school completed, secondary school not (yet) completed', 27603.0: 'Lower secondary schools (no access to general) or polytechnic secondary school (8th or 9th grade)', 27604.0: 'Lower secondary schools (access to general) or polytechnic secondary school (10th grade)', 27605.0: 'University of Applied Science entrance qualification (specialised vocational high schools etc.)', 27606.0: 'Grammar school (University entrance qualification)', 27607.0: 'Other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True14717
v252_cs_DE2381v252_cs_DE2numericDE COUNTRY-SPECIFIC: educational level spouse/partner (Q89), STUDIES{-10.0: 'multiple answers Mail', 27601.0: 'No degree', 27602.0: 'Preliminary examination, preliminary diploma', 27603.0: 'College of public administration or University of Applied Sciences (diploma)', 27604.0: 'Vocational academy (diploma)', 27605.0: 'College of public administration or University of Applied Sciences (Bachelor)', 27606.0: 'Vocational academy (Bachelor)', 27607.0: 'University (Bachelor)', 27608.0: 'College of public administration or University of Applied Sciences (Master)', 27609.0: 'Vocational academy (Master)', 27610.0: 'University (diploma, Magister, state examaniation)', 27611.0: 'University (Master or postgraduate studies)', 27612.0: 'Doctoral studies', 27613.0: 'other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True139013
v252_cs_DE3382v252_cs_DE3numericDE COUNTRY-SPECIFIC: educational level spouse/partner (Q89), VOCATIONAL{-10.0: 'multiple answers Mail', 27601.0: 'No degree', 27602.0: 'Pre-vocational training, qualification of short health sector programmes', 27603.0: 'Vocational training with diploma, but no Dual System (second cycle)', 27604.0: 'Medical assistant, nurse (qualification of health sector schools (2 and 3 years)', 27605.0: 'Qualification of civil servants for the medium level', 27606.0: 'Qualification in the Dual System (second cycle), industrial or agricultural sector', 27607.0: 'Qualification in the Dual System (second cycle), sales sector', 27608.0: 'Qualification of a vocational full-time school', 27609.0: 'Occupational qualification (second cycle) for students with occupational qualification or with university entrace qualif', 27610.0: \"Master craftsmen's or Technician's qualification (or equal)\", 27611.0: 'other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True137911
v252_cs_GB1383v252_cs_GB1numericGB COUNTRY-SPECIFIC:educational level spouse/partner: Up to 2 or more A-levels or equivalent (Q89a){82601.0: '2 or more A-levels or equivalent', 82602.0: ' GNVQ or GSVQ Intermediate', 82603.0: ' Vocational GCSE or equivalent', 82604.0: ' 5 or more GCSEs A*-C or equivalent', 82605.0: ' 1-4 GCSEs A*-C or equivalent', 82606.0: ' Skills for life', 82607.0: ' None of these'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True8697
v252_cs_GB2384v252_cs_GB2numericGB COUNTRY-SPECIFIC:educational level spouse/partner: Up to Ph.D or equivalent (Q89b){82601.0: ' Ph.D, D.Phil or equivalent', 82602.0: ' Masters Degree, M.Phil, Post-Graduate Diplomas and Certificates', 82603.0: ' 5 year University/CNAA first Degree (MB, BDS, BV etc)', 82604.0: ' 3-4 year University/CNAA first Degree (BA, BSc., BEd., BEng. Etc)', 82605.0: ' Nursing certificate, Teacher training, HE Diploma, Edexcel/BTEC/BEC/TEC/HND, City and Guilds, NVQ/SVQ - Leve', 82606.0: ' Foundation Degree (FdA, FdSc etc)', 82607.0: ' Edexcel/BTEC/BEC/TEC - Higher National Certificate (HNC) or equivalent', 82608.0: ' HE Access', 82609.0: ' Vocational A-level (AVCE), GCE Applied A-level, NVQ/SVQ Level 3, GNVQ/GSVQ Advanced, Edexcel/BTEC/BEC/TEC (G', 82610.0: ' (Modern) Apprenticeship, Advanced (Modern) Apprenticeship, SVQ/NVQ/Key Skills Level 1 and 2, City and Guild', 82611.0: ' None of these', 82612.0: ' Any other qualifications (specify)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True86212
v253385v253numericpaid employment/no paid employment spouse/partner (Q90){1.0: '30h a week or more', 2.0: 'less then 30h a week', 3.0: 'self employed', 4.0: 'military service', 5.0: 'retired/pensioned', 6.0: 'homemaker not otherwise employed', 7.0: 'student', 8.0: 'unemployed', 9.0: 'disabled', 10.0: 'other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3575210
v254386v254numericemployment/self-employment (spouse/partner): last job (Q91){1.0: 'employed', 2.0: 'self-employed'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'never had a paid job'}True115432
v255_ISCO_2387v255_ISCO_2numerickind of job spouse/partner - 2 digit ISCO08 code (Q92a){0.0: 'Armed Forces Occupations', 1.0: 'Commissioned Armed Forces Officers', 2.0: 'Non-commissioned Armed Forces Officers', 3.0: 'Armed Forces Occupations, Other Ranks', 10.0: 'ISCO 1-digit: Managers', 11.0: 'Chief Executives, Senior Officials and Legislators', 12.0: 'Administrative and Commercial Managers', 13.0: 'Production and Specialized Services Managers', 14.0: 'Hospitality, Retail and Other Services Managers', 20.0: 'ISCO 1-digit: Professionals', 21.0: 'Science and Engineering Professionals', 22.0: 'Health Professionals', 23.0: 'Teaching Professionals', 24.0: 'Business and Administration Professionals', 25.0: 'Information and Communications Technology Professionals', 26.0: 'Legal, Social and Cultural Professionals', 30.0: 'ISCO 1-digit: Technicians and Associate Professionals', 31.0: 'Science and Engineering Associate Professionals', 32.0: 'Health Associate Professionals', 33.0: 'Business and Administration Associate Professionals', 34.0: 'Legal, Social, Cultural and Related Associate Professionals', 35.0: 'Information and Communications Technicians', 40.0: 'ISCO 1-digit: Clerical Support Workers', 41.0: 'General and Keyboard Clerks', 42.0: 'Customer Services Clerks', 43.0: 'Numerical and Material Recording Clerks', 44.0: 'Other Clerical Support Workers', 50.0: 'ISCO 1-digit: Services and Sales Workers', 51.0: 'Personal Services Workers', 52.0: 'Sales Workers', 53.0: 'Personal Care Workers', 54.0: 'Protective Services Workers', 60.0: 'ISCO 1-digit: Skilled Agricultural, Forestry and Fishery Workers', 61.0: 'Market-oriented Skilled Agricultural Workers', 62.0: 'Market-oriented Skilled Forestry, Fishery and Hunting Workers', 63.0: 'Subsistence Farmers, Fishers, Hunters and Gatherers', 70.0: 'ISCO 1-digit: Craft and Related Trades Workers', 71.0: 'Building and Related Trades Workers (excluding Electricians)', 72.0: 'Metal, Machinery and Related Trades Workers', 73.0: 'Handicraft and Printing Workers', 74.0: 'Electrical and Electronics Trades Workers', 75.0: 'Food Processing, Woodworking, Garment and Other Craft and Related Trades Workers', 80.0: 'ISCO 1-digit: Plant and Machine Operators and Assemblers', 81.0: 'Stationary Plant and Machine Operators', 82.0: 'Assemblers', 83.0: 'Drivers and Mobile Plant Operators', 90.0: 'ISCO 1-digit: Elementary Occupations', 91.0: 'Cleaners and Helpers', 92.0: 'Agricultural, Forestry and Fishery Labourers', 93.0: 'Labourers in Mining, Construction, Manufacturing and Transport', 94.0: 'Food Preparation Assistants', 95.0: 'Street and Related Sales and Services Workers', 96.0: 'Refuse Workers and Other Elementary Workers', 99.0: 'ISCO could not be applied to response given'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3095047
v255_SIOPS388v255_SIOPSnumerickind of job spouse/partner -SIOPS08 code (Q92a){}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3080963
v255_ISEI389v255_ISEInumerickind of job spouse/partner - ISEI08 code (Q92a){}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3080977
v255_ESeC390v255_ESeCnominalkind of job spouse/partner - ESEC08 code (Q92a){1.0: 'Large employers, higher mgrs/professionals', 2.0: 'Lower mgrs/professionals, higher supervisory/technicians', 3.0: 'Intermediate occupations', 4.0: 'Small employers and self-employed (non-agriculture)', 5.0: 'Small employers and self-employed (agriculture)', 6.0: 'Lower supervisors and technicians', 7.0: 'Lower sales and service', 8.0: 'Lower technical', 9.0: 'Routine', 99.0: 'ISCO could not be applied to response given'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey beak-off)', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True308099
v255_egp391v255_egpnumerickind of job spouse/partner - EGP11 (Q92a){1.0: 'I :Higher Controllers', 2.0: 'II :Lower Controllers', 3.0: 'IIIa:Routine Nonmanual', 4.0: 'IIIb:Lower Sales-Service', 5.0: 'IVa:Selfempl with empl', 6.0: 'IVb:Selfempl no empl', 7.0: 'V :Manual Supervisors', 8.0: 'VI :Skilled Worker', 9.0: 'VIIa:Unskilled Worker', 10.0: 'VIIb:Farm Labor', 11.0: 'IVc:Selfempl Farmer', 99999.0: 'ISCO could not be applied to response given'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True3079611
v256392v256numericspouse/partner has/had how many employees (Q93){1.0: 'none', 2.0: '1-9', 3.0: '10-24', 4.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True35224
v257393v257numericdoes/did spouse/partner supervise someone (Q94){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True278712
v258394v258numerichow many people does she/he supervise (Q95){1.0: '1-9', 2.0: '10-24', 3.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True65623
v259395v259numericrespondent experienced unemployment longer than 3 months (Q96){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580242
v260396v260numericdependency on social security during last 5 years respondent (Q97){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585612
v261397v261nominalhouseholds total net income (Q98) (standardized){1.0: 'A - 1st decile', 2.0: 'B - 2nd decile', 3.0: 'C - 3rd decile', 4.0: 'D - 4th decile', 5.0: 'E - 5th decile', 6.0: 'F - 6th decile', 7.0: 'G - 7th decile', 8.0: 'H - 8th decile', 9.0: 'I - 9th decile', 10.0: 'J - 10th decile'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5069810
v261_ppp398v261_pppnumerichousehold monthly net income (x1000), corrected for ppp in euros (Q98){}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True50698348
v261_r399v261_rnumerichousehold total net income (Q98) (income level){1.0: ' Low', 2.0: 'Middle', 3.0: 'High'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True506983
v262_edulvlb400v262_edulvlbnominaleducational level father: ESS-edulvlb coding (Q99){0.0: 'Not completed ISCED 1', 113.0: 'Completed ISCED 1', 129.0: 'short vocational ISCED 2', 212.0: 'General/pre-vocational ISCED 2 with access to 32x', 213.0: 'General ISCED 2 with access to all ISCED 3', 221.0: 'Vocational ISCED 2 without access to ISCED 3', 222.0: 'Vocational ISCED 2 with access to 32x only', 223.0: 'Vocational ISCED 2 with access to all ISCED 3', 229.0: 'short vocational ISCED 3', 311.0: 'General ISCED 3 without access to tertiary', 312.0: 'General ISCED 3 with access to non-university tertiary only', 313.0: 'General ISCED 3 with access to university', 321.0: 'Vocational ISCED 3 without access to tertiary', 322.0: 'Vocational ISCED 3 with access to non-university tertiary only', 323.0: 'Vocational ISCED 3 with access to university', 412.0: 'General ISCED 4, with access to non-university tertiary only', 413.0: 'General ISCED 4 with access to all first degrees at ISCED 6/7', 421.0: 'Vocational ISCED 4 without access to tertiary', 422.0: 'Vocational ISCED 4, with access to non-university tertiary only', 423.0: 'Vocational ISCED 4, with access to university', 510.0: \"University qualification below bachelor's degree\", 520.0: \"Non-university qualification below bachelor's degree\", 610.0: \"Non-university bachelor's degree\", 620.0: \"University bachelor's degree\", 710.0: \"Non-university master's degree\", 720.0: \"University master's degree\", 800.0: 'Doctoral degree', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5394028
v262_edulvlb_2401v262_edulvlb_2nominaleducational level father: ESS-edulvlb coding two digits (Q99){0.0: 'Less than primary', 11.0: 'Primary: general education', 12.0: 'Primary: vocational programmes', 21.0: 'Lower secondary: general education', 22.0: 'Lower secondary: vocational programmes', 31.0: 'Upper secondary: general education', 32.0: 'Upper secondary: vocational programmes', 41.0: 'Post-secondary non tertiary: general education', 42.0: 'Post-secondary non tertiary: vocational programmes', 51.0: 'Short-cycle tertiary: general education', 52.0: 'Short-cycle tertiary: vocational programmes', 61.0: 'Bachelor or equivalent: general education', 62.0: 'Bachelor or equivalent: vocational programmes', 71.0: 'Master or equivalent: general education', 72.0: 'Master or equivalent: vocational programmes', 80.0: 'Doctoral or equivalent', 666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5394017
v262_edulvlb_1402v262_edulvlb_1nominaleducational level father: ESS-edulvlb coding one digit (Q99){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5394010
v262_ISCED_3403v262_ISCED_3numericeducational level father: ISCED-code three digit (Q99){0.0: 'Less than primary', 100.0: 'Primary', 244.0: 'General lower secondary with direct access to upper secondary', 253.0: 'Vocational lower secondary without direct access to upper secondary', 254.0: 'Vocational lower secondary with direct access to upper secondary', 343.0: 'General upper secondary without direct access to first tertiary programmes', 344.0: 'General upper secondary with direct access to first tertiary programmes', 353.0: 'Vocational upper secondary without direct access to first tertiary programmes', 354.0: 'Vocational upper secondary with direct access to first tertiary programmes', 444.0: 'General post-secondary non-tertiary with direct access to first tertiary programmes', 453.0: 'Vocational post-secondary non-tertiary without direct access to first tertiary programmes', 454.0: 'Vocational post-secondary non-tertiary with direct access to first tertiary programmes', 540.0: 'General short-cycle tertiary', 550.0: 'Vocational short-cycle tertiary', 640.0: 'Academic Bachelor’s or equivalent level', 650.0: 'Professional Bachelor’s or equivalent level', 740.0: 'Academic Master’s or equivalent level', 750.0: 'Professional Master’s or equivalent level', 800.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5394020
v262_ISCED_2404v262_ISCED_2numericeducational level father: ISCED-code two digit (Q99){0.0: 'Pre-primary education', 10.0: 'Primary education', 24.0: 'Lower secondary general education', 25.0: 'Lower secondary vocational education', 34.0: 'Upper secondary general education', 35.0: 'Upper secondary vocational education', 44.0: 'Post-secondary non-tertiary general education', 45.0: 'Post-secondary non-tertiary vocational education', 54.0: 'Short-cycle tertiary general education', 55.0: 'Short-cycle tertiary vocational education', 64.0: 'Bachelor’s or equivalent level, academic', 65.0: 'Bachelor’s or equivalent level, professional', 74.0: 'Master’s or equivalent level, academic', 75.0: 'Master’s or equivalent level, professional', 80.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5394016
v262_ISCED_2b405v262_ISCED_2bnominaleducational level father: ISCED-code two digit, second option (Q99){0.0: 'Less than primary', 10.0: 'Primary', 23.0: 'Lower secondary, no access to upper secondary education', 24.0: 'Lower secondary, access to upper secondary education', 33.0: 'Upper secondary, no access to upper secondary education', 34.0: 'Upper secondary, access to upper secondary education', 43.0: 'Post-secondary non-tertiary, no access to upper secondary education', 44.0: 'Post-secondary non-tertiary, access to upper secondary education', 50.0: 'Short-cycle tertiary education', 60.0: 'Bachelor’s or equivalent level', 70.0: 'Master or equivalent level', 80.0: 'Doctorate or equivalent level', 6666.0: 'Other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True5394013
v262_ISCED_1406v262_ISCED_1nominaleducational level father: ISCED‐code one digit (Q99){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5501710
v262_EISCED407v262_EISCEDnumericeducational level father: ES-ISCED coding (Q99){0.0: 'No formal or less than primary education', 1.0: 'I - Primary education', 2.0: 'II - Lower secondary (including vocational training that is not considered as completion of upper secondary education)', 3.0: 'IIIb - Upper secondary without access to higher education', 4.0: 'IIIa - Upper secondary with access to higher education', 5.0: 'IV - Post-secondary/advanced vocational education below bachelor’s degree level', 6.0: \"V1 - Bachelor's level\", 7.0: \"V2 - Master's and higher level\", 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True539409
v262_ISCED97408v262_ISCED97numericeducational level father: ISCED97-code one digit (Q99){0.0: ' 0 : Pre-primary education or none education', 1.0: ' 1 : Primary education or first stage of basic education', 2.0: ' 2 : Lower secondary or second stage of basic education', 3.0: ' 3 : (Upper) secondary education', 4.0: ' 4 : Post-secondary non-tertiary education', 5.0: ' 5 : First stage of tertiary education', 6.0: ' 6 : Second stage of tertiary education'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True539408
v262_8cat409v262_8catnumericeducational level father: 8 categories (Q99){-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', 1.0: ' Inadequately completed elementary education', 2.0: ' Completed (compulsory) elementary education', 3.0: ' Incomplete secondary school: technical/vocational type', 4.0: ' Complete secondary school: technical/vocational type/secondary', 5.0: ' Incomplete secondary: university-preparatory type/secondary', 6.0: ' Complete secondary: university-preparatory type/full secondary', 7.0: ' Some university without degree/higher education - lower-level tertiary', 8.0: ' University with degree/higher education - upper-level tertiary'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True539409
v262_r410v262_rnominaleducational level father: recoded (Q99){1.0: 'lower', 2.0: 'medium', 3.0: 'higher', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True550174
v262_cs411v262_csnumericeducational level father: country-specific, ISO 3166-1 (Q99){801.0: ' AL: Without school', 802.0: ' AL: Primary education', 803.0: ' AL: Lower secondary (Leaving certificate)', 804.0: ' AL: Upper secondary general (Maturity diploma)', 805.0: ' AL: Upper secondary vocational (2 years, certificate of high technical or vocational education)', 806.0: ' AL: Upper secondary vocational (over 2 years, Maturity diplome)', 807.0: ' AL: Post-secondary non tertiary', 808.0: ' AL: University diploma/Bachelor', 809.0: ' AL: Vocational/Professional Master', 810.0: ' AL: Post-University', 811.0: ' AL: Master of Arts', 812.0: ' AL: Master of Science', 813.0: ' AL: Long term specialization', 814.0: ' AL: Doctoral Degree', 877.0: ' AL: not applicable', 888.0: ' AL: don’t know (spontaneous)', 899.0: ' AL: no answer (spontaneous)', 3101.0: ' AZ: None', 3102.0: ' AZ: Primary education (1-4 years)', 3103.0: ' AZ: Incomplete general secondary (5-8 grades)', 3104.0: ' AZ: General secondary education (9 grades)', 3105.0: ' AZ: Complete secondary education (11 grades)', 3106.0: ' AZ: Primary vocational-professional education (Vocational school/lyceum) (1-3 years)', 3107.0: ' AZ: Secondary special education (Technical school/College) (2-4 years)', 3108.0: ' AZ: Bachelor degree (4 years)', 3109.0: ' AZ: Master degree (2 years)', 3110.0: ' AZ: Science degree (former Aspirantura/PhD): Doctor of Philosophy, Doctor of Science', 3188.0: ' AZ: don’t know (spontaneous)', 3199.0: ' AZ: no answer (spontaneous)', 4001.0: 'AT: Not completed', 4002.0: 'AT: Completed primary education', 4003.0: 'AT: Completed Lower Secundary Education, New Secundary School', 4004.0: 'AT: Completed Polytechnic School, or one-year Middle School', 4005.0: 'AT: Completed Academic Secondary School (AHS), elementary level', 4006.0: 'AT: Completed apprenticeship (final apprenticeship examination)', 4007.0: 'AT: Completed Vocational Middle School (at least 2 years, e.g. commercial school, professional school)', 4008.0: 'AT: Completed Higher School Certificate (matriculation, general qualification for university entrance)', 4009.0: 'AT: Completed degree in health or nursing care', 4010.0: 'AT: Completed Higher School Certificate in Vocational Higher School', 4011.0: 'AT: Completed advanced vocational training', 4012.0: 'AT: Completed pedagoical/educational/medical degree', 4013.0: \"AT: Completed Bachelor's degree at a university of applied sciences\", 4014.0: \"AT: Completed Bachelor's degree at a university\", 4015.0: \"AT: Completed Master's degree at a university of applied sciences\", 4016.0: \"AT: Completed Master's degree at a university of applied sciences\", 4017.0: 'AT: Completed post-graduate university courses (e.g. MBA)', 4018.0: 'AT: Completed doctorate/PhD', 4019.0: 'AT: other', 5101.0: 'AM: Never went to school', 5102.0: 'AM: Less than 4 years of education', 5103.0: 'AM: 4 years of primary education', 5104.0: 'AM: Certificate of lower secondary/ basic secondary education, 9 years', 5105.0: 'AM: Certificate of initial vocational education after lower /basic education', 5106.0: 'AM: Advanced vocational education after lower /basic education', 5107.0: 'AM: Certificate of upper secondary education, 12 years', 5108.0: 'AM: Certificate of initial vocational training after upper secondary education', 5109.0: 'AM: Advanced vocational education after upper secondary education', 5110.0: 'AM: Bachelor degree 4 years', 5111.0: 'AM: Specialist degree', 5112.0: 'AM: Master degree 2 years', 5113.0: 'AM: Phd and habilitation', 7001.0: 'BA: No school (up to three grades of elementary school)', 7002.0: 'BA: Unfinished elementary school (4 to 7 grades)', 7003.0: 'BA: Completed elementary school', 7004.0: 'BA: Secondary vocational school up to 1-2 years', 7005.0: 'BA: Secondary vocational school up to 3 years', 7006.0: 'BA: Technical and related secondary vocational schools up to 4 years or more', 7007.0: 'BA: High school', 7008.0: 'BA: Professional study up to 2-3 years', 7009.0: \"BA: Undergraduate university study - for the academic title 'baccalaureus' (3-4 years); Art academy (undergraduate stud\", 7010.0: 'BA: Specialist graduate professional study (4-5 years); Specialist in the profession', 7011.0: 'BA: Graduate university study (4-6 years) - old program', 7012.0: \"BA: Master's degree (5 years); Art academy (graduate study)\", 7013.0: \"BA: Master's degree of Science or completed postgraduate specialist studies\", 7014.0: 'BA: Postgraduate Doctorate of Science', 10001.0: 'BG: Incomplete primary education', 10002.0: 'BG: Primary education', 10003.0: 'BG: Basic education', 10004.0: 'BG: Secondary general education', 10005.0: 'BG: Secondary special education Language Schools, Mathematics and Natural Science', 10006.0: 'BG: Secondary special education Arts and Sports', 10007.0: 'BG: Secondary vocational education', 10008.0: 'BG: Semi-higher education', 10009.0: 'BG: College - Professional bachelor', 10010.0: 'BG: Higher education - Bachelor', 10011.0: 'BG: Higher education - Master', 10012.0: 'BG: Doctor of science', 11201.0: 'BY: No education', 11202.0: 'BY: Primary school', 11203.0: 'BY: Certificate of lower secondary general education', 11204.0: 'BY: Certificate of upper general secondary education', 11205.0: 'BY: 1-2 year vocational education after lower secondary education', 11206.0: 'BY: Vocational training with upper secondary general training in parallel', 11207.0: 'BY: Certificate of upper vocational education with upper secondary general education', 11208.0: \"BY: Bachelor's Degree\", 11209.0: \"BY: Higher education, Specialist's Diploma\", 11210.0: \"BY: Master's degree\", 11211.0: 'BY: PhD', 11212.0: 'BY: Habilitation', 19101.0: 'HR: No school (up to three grades of elementary school)', 19102.0: 'HR: Unfinished elementary school (4 to 7 grades)', 19103.0: 'HR: Completed elementary school', 19104.0: 'HR: Secondary vocational school up to 1-2 years', 19105.0: 'HR: Secondary vocational school up to 3 years', 19106.0: 'HR: Technical and related secondary vocational schools up to 4 years or more', 19107.0: 'HR: High school', 19108.0: 'HR: Professional study up to 2-3 years', 19109.0: \"HR: Undergraduate university study; for academic title 'baccalaureus' (3-4 years); Art academy (undergraduate study)\", 19110.0: 'HR: Specialist graduate professional study (4-5 years); Specialist in the profession', 19111.0: 'HR: Graduate university study (4-6 years) - old program', 19112.0: \"HR: Master's degree (5 years); Art academy (graduate study)\", 19113.0: \"HR: Master's degree of Science or completed postgraduate specialist studies\", 19114.0: 'HR: Postgraduate Doctorate of Science', 20301.0: 'CZ Incomplete elementary education, unfinished 1st level (less than 5 grades/years)', 20302.0: 'CZ: Incomplete basic education (5+ years of schooling, only primary school completed, SZŠ, ZZŠ, general school)', 20303.0: 'CZ: Basic education (bougeois school)', 20304.0: 'CZ: Secondary education with an apprenticeship certificate, Secondary education without school-leaving examination', 20305.0: 'CZ: Secondary education without leaving examination followed by further studies with final exam (teaching, retraining)', 20306.0: 'CZ: Education with GCSE, full secondary vocational education with GCSE', 20307.0: 'CZ: Secondary educ. with school-leaving exam followed by studies with final exam (post-gr., follow-up courses etc)', 20308.0: 'CZ: Secondary general education with school-leaving examination (grammar school)', 20309.0: 'CZ: Post-secondary education with diploma: Higher vocational school (DiS), 5th and 6th year of conservatory (discharge)', 20310.0: \"CZ: Bachelor's degree\", 20311.0: \"CZ: Master's degree education (Mgr., Ing., Ing., MUDr., MDDr., MVDr., …)\", 20312.0: 'CZ: Doctoral studies, postgraduate education (Ph.D., Th.D., CSc, ...)', 20801.0: ' DK: municipal primary and lower secondary school: 5th grade or lower', 20802.0: ' DK: municipal primary and lower secondary school: 6th grade to 8th grade', 20803.0: ' DK: municipal primary and lower secondary school: 9th grade to 10th grade', 20804.0: \" DK: '(Upper) Secondary Education: Gymnasium, Higher Preparatory Examination (HF), Higher Commercial Examination Program\", 20805.0: ' DK: Semiskilled worker courses and short vocational education (less than 2 years)', 20806.0: ' DK: Vocational and technical (upper) secondary education', 20807.0: ' DK: Short-cycle higher non-university programmes (2-3 years)', 20808.0: ' DK: medium-cycle university and non-university programmes, proffesional bachelor degree (3-4 years)', 20809.0: ' DK: long-cycle university programmes, 1 part - university bachelor degree', 20810.0: ' DK: long-cycle university programmes, 2. part Kandidat degree (Masters) (5-6 years)', 20811.0: ' DK: Licentiat (closed research education program)', 20812.0: ' DK: Research Education, PhD., Doctor', 20813.0: ' DK: other', 23301.0: 'EE: Without primary education (less than 4 grades)', 23302.0: 'EE: Completed primary education (4-6 grades)', 23303.0: 'EE: Vocational education without completed primary education', 23304.0: 'EE: Completed basic education (7-9 grades)', 23305.0: 'EE: Vocational secondary education after basic education (training programme under 2 years)', 23306.0: 'EE: Completed secondary education', 23307.0: 'EE: Vocational secondary education after basic education (training programme 2 years or more)', 23308.0: 'EE: Vocational secondary education with secondary education or vocational secondary education (tehnical education) afte', 23309.0: 'EE: Vocational-secondary education (tehnical education) after secondary education', 23310.0: 'EE: Vocational university after secondary education diploma (up to 2 years trainings, but not Bachelor of Arts)', 23311.0: 'EE: Higher vocational education diploma or Bachelor of Arts degree (3-4 years of trainings)', 23312.0: 'EE: University Bachelor of Arts degree (3-4 years of trainings', 23313.0: 'EE: Master of Arts from Vocational university', 23314.0: 'EE: Master of Arts\\xa0(3+2, 4+2 or by 5+4 system, incl. integrated BA and MA), higher education started before 1992 (speci', 23315.0: \"EE: Doctor's degree\", 24601.0: ' FI: Less than primary school (grades 1-6) or less than comprehensive school', 24602.0: \" FI: Grades 1-6 of comprehensive school, or primary school or people's school\", 24603.0: ' FI: Grades 7-9 of comprehensive school, or middle school', 24604.0: ' FI: General upper secondary school, matriculation examination', 24605.0: ' FI: Vocational upper secondary qualification, further vocational qualification', 24606.0: ' FI: Both matriculation examination and vocational qualification', 24607.0: ' FI: Specialist vocational qualification', 24608.0: ' FI: Post-secondary level vocational qualification (old)', 24609.0: \" FI: Bachelors' degree in universities of applied sciences (polytechnic)\", 24610.0: \" FI: Bachelors' degree in university\", 24611.0: \" FI: Master's degree in universities of applied sciences (polytechnic)\", 24612.0: \" FI: Master's degree in university\", 24613.0: ' FI: Licentiate degree', 24614.0: ' FI: Doctoral degree', 24615.0: ' FI: other', 25001.0: ' FR: no schooling or not completed primary education', 25002.0: \" FR: Completed primary education, without the final certificate (Certificat d'études primaires=an old qualification off\", 25003.0: \" FR: Completed primary education, with the Certificat d'études primaires\", 25004.0: \" FR: Secondary education 1st cycle, without the final certificate (Brevet élémentaire, Brevet d'étude du premier cycl\", 25005.0: \" FR: Secondary education 1st cycle, with the final certificate (Brevet élémentaire, Brevet d'étude du premier cycle,\", 25006.0: ' FR: Secondary education 2nd cycle, without the final exam (Baccalauréat)', 25007.0: \" FR: Certificate of vocational ability : Certificat d'Aptitude Professionnelle (CAP) or Brevet d'Etudes Professionnelles\", 25008.0: ' FR: Vocational qualification in care (home care, children care, health care)', 25009.0: ' FR: Vocational Baccalaureat', 25010.0: ' FR: Technological Baccalaureat or equivalent diploma', 25011.0: ' FR: General Baccalaureat or equivalent diploma', 25012.0: ' FR: Certificate of ability in Law, Diploma allowing admission in tertiary education', 25013.0: ' FR: Qualifications of vocational secondary education in health and care institutions (like Moniteur éducateur and equi', 25014.0: ' FR: University education, 1st cycle Diploma in general tertiary education (2 years), classes for competitive entrance', 25015.0: ' FR: Diploma in Technological Studies , Diploma of Advanced Technician', 25016.0: ' FR: Qualification in paramedical and social sectors (social assistant, etc,)', 25017.0: ' FR: Vocational Bachelor (University education, 1st graduation and apprenticeship)', 25018.0: ' FR: Bachelor (University education, 2nd cycle, 1st year and apprenticeship)', 25019.0: ' FR: Engineer Degree', 25020.0: ' FR: Vocational Master Degree', 25021.0: ' FR: Intermediate Master degree (university education, 2nd cycle, 2nd year), qualification of primary and secondary educ', 25022.0: ' FR: Research Master Degree, qualification of university education teachers', 25023.0: ' FR: Qualifications of architects, veterinaries, notaries', 25024.0: ' FR: Diplôma from selective “grandes écoles”', 25025.0: ' FR: Doctorate in medecine, odontology, pharmacy', 25026.0: ' FR: Doctorate', 26801.0: 'GE: No education', 26802.0: 'GE: Less than 6 years primary education', 26803.0: 'GE: Primary education completed, 6 years', 26804.0: 'GE: Basic/ lower general education certificate, 9 years', 26805.0: 'GE: Upper secondary general education certificate', 26806.0: 'GE: Professional diploma level 1, 2, or 3 (Vocational Education certificate, before 2010)', 26807.0: 'GE: Professional diploma level 4/5 (Secondary Vocational Educ. Certificate pre-2010, Certified Diploma 2008-2010)', 26808.0: 'GE: Interim qualification, short cycle tertiary education', 26809.0: 'GE: Bachelor degree', 26810.0: 'GE: Master degree', 26811.0: 'GE: Specialist studies', 26812.0: 'GE: Doctoral degree', 34801.0: 'HU: Never attented school; 1-3 years of primary school or equivalent', 34802.0: 'HU: 4-7 years of primary school or equivalent', 34803.0: 'HU: Completed primary school or equivalent', 34804.0: 'HU: Vocational school', 34805.0: 'HU: Vocational training after the 10. grade', 34806.0: 'HU: Completed secondary vocational education with school-leaving exam', 34807.0: 'HU: Completed secondary general education (Gymnasium) with school-leaving exam', 34808.0: 'HU: Post-secondary, mon-tertiary vocational education and training (E.g. technical school)', 34809.0: 'HU: Short-cycle tertiary level vocational education and training (VET)', 34810.0: \"HU: College degree or college bachelor's degree - BA/BSc\", 34811.0: \"HU: University bachelor's degree - BA/BSc\", 34812.0: \"HU: College master's degree - MA/MSc\", 34813.0: \"HU: University degree or university master's degree - MA/MSc\", 34814.0: 'HU: Doctoral degree', 35201.0: 'IS: Less than primary education', 35202.0: 'IS: Primary education', 35203.0: 'IS: Elementary school, 14–15 years of age', 35204.0: 'IS: National test', 35205.0: 'IS: Elementary school, 15–16 years of age (compulsory education)', 35206.0: 'IS: Elementary school, 16–17 years of age', 35207.0: 'IS: Vocational education at the lower secondary level', 35208.0: 'IS: Post-secondary non-tertiary education', 35209.0: 'IS: Other post-secondary, non-tertiary vocational education', 35210.0: 'IS: Upper secondary art education, 2+ years', 35211.0: 'IS: Certified trades, school diploma', 35212.0: 'IS: Matriculation examination', 35213.0: 'IS: Upper secondary education', 35214.0: 'IS: Master of a certified trade', 35215.0: 'IS: Tertiary general education, 2–3 years', 35216.0: 'IS: Tertiary vocational education, 2–3 years', 35217.0: 'IS: Bachelor’s or equivalent level', 35218.0: 'IS: Master’s or equivalent level', 35219.0: 'IS: Doctoral or equivalent level', 38001.0: ' IT: No title', 38002.0: ' IT: Elementary school diploma', 38003.0: ' IT: Vocational training', 38004.0: ' IT: Middle school diploma', 38005.0: ' IT: Post-obligation vocational regional qualification', 38006.0: \" IT: Vocational institute diploma (2 or 3 years), including art teacher diploma, teacher's training school diploma and n\", 38007.0: ' IT: High school diploma (5 years), technical or vocational institute, including art institute five years diploma', 38008.0: ' IT: High school diploma (4 or 5 years), classical, scientific, linguistic or psyco-pedagogical, musical lyceum, includi', 38009.0: ' IT: Post-(high school) diploma specialization, post-(high school) diploma vocational regional qualification, certificat', 38010.0: ' IT: Former system academic diploma (2 or 3 years), including higher institute of physical education, social service and', 38011.0: ' IT: Tertiary education not academic diploma: Music Conservatory, Academy of Fine Arts and similar', 38012.0: ' IT: Three years or first level degree (bachelor)', 38013.0: ' IT: First level specialization degree', 38014.0: \" IT: Former system degree, master's degree, single cycle degree\", 38015.0: ' IT: Second level specialization degree', 38016.0: ' IT: Post-graduate specialization (1 or 2 years)', 38017.0: ' IT: Post-graduate specialization (3 or 4 years), including medical specialization', 38018.0: ' IT: Doctoral degree', 42801.0: ' LV: Has not attended school', 42802.0: ' LV: Incompete primary education ( 6 grades)', 42803.0: ' LV: General primary education', 42804.0: ' LV: Basic vocational education', 42805.0: ' LV: Vocational education (without secondary) (1 year)', 42806.0: ' LV: Vocational education (without secondary) (3 years)', 42807.0: ' LV: General secondary education', 42808.0: ' LV: Vocational secondary education', 42809.0: ' LV: Vocational (not higher) education after general secondary education', 42810.0: ' LV: 1st level professional/ vocational higher education (college)', 42811.0: \" LV: Bachelor's degree (professional)\", 42812.0: \" LV: Bachelor's degree (academic)\", 42813.0: \" LV: Master's degree (professional)\", 42814.0: \" LV: Master's degree (academic)\", 42815.0: ' LV: Higher education obtained during the Soviet era', 42816.0: ' LV: Doctoral degree', 44000.0: ' LT: Less than primary', 44001.0: ' LT: Primary', 44002.0: ' LT: Lower general vocational', 44003.0: ' LT: General/ lower secondary', 44004.0: ' LT: General vocational', 44005.0: ' LT: Lower vocational after general', 44006.0: ' LT: Vocational after general', 44007.0: ' LT: Secondary', 44008.0: ' LT: Vocational with secondary', 44009.0: ' LT: Vocational after secondary', 44010.0: ' LT: Upper general and secondary vocational', 44011.0: ' LT: Upper secondary vocational', 44012.0: ' LT: Higher non university', 44013.0: ' LT: Higher university education (BA)', 44014.0: ' LT: Higher university education (MA)', 44015.0: ' LT: Higher university integrated education (I and II stages - 6 years)', 44016.0: ' LT: Doctoral studies and diploma', 49901.0: ' ME: No education', 49902.0: ' ME: Completed 4 years of primary education', 49903.0: ' ME: Completed lower secondary education', 49904.0: ' ME: 1-2 years vocational training', 49905.0: ' ME: Completed high school lasting three years', 49906.0: ' ME: Certificate of upper secondary vocational education (4 years)', 49907.0: ' ME: Secondary general (grammar schools, 4 years)', 49908.0: ' ME: Vocational exam', 49909.0: ' ME: Primary level diploma (after two or three years of bachelor level pre-Bologne reform)', 49910.0: ' ME: Completed two years of higher education that provides basic certificate but not entrance to MA studies', 49911.0: ' ME: Vocational studies (in duration of three years)', 49912.0: ' ME: Bachelor studies in duration of 3 years', 49913.0: ' ME: Specialization studies or four year studies in pre-Bologne system', 49914.0: ' ME: Master studies in duration of one year; Integrated studies (five year studies); Specialization studies', 49915.0: ' ME: Magister studies, Studies of medicine (in duration of 6 years, in old system), Specialisation', 49916.0: ' ME: PhD', 52801.0: 'NL: No completed primary education', 52802.0: 'NL: Primary education', 52803.0: \"NL: Pre-vocational program ('vmbo level 1, 2 or 3' or 'lbo') or comparable\", 52804.0: \"NL: Preparatory secondary vocational education ('mavo' (previous 'vmbo') or 'vmbo level 4') or comparable\", 52805.0: 'NL: Intermediate vocational educational, level 1 (duration 2 year)', 52806.0: \"NL: Senior general secondary school ('havo') or comparable\", 52807.0: \"NL: Pre-university education ('vwo' or gymnasium) or comparable\", 52808.0: \"NL: kmbo', 'meao', 'mts' or comparable (duration 2-3 years)\", 52809.0: 'NL: Intermediate vocational education , levels 2 and 3 (duration 2-3 years)', 52810.0: 'NL: Intermediate vocational education , level 4 (duration 4 years)', 52811.0: \"NL: Intermediate vocational education plus (for people that completed 'havo')\", 52812.0: 'NL: First year of university, Bachelor (propaedeutics)', 52813.0: 'NL: Shorter higher vocational education, shorter University of Applied Sciences (duration 2 or 3 years)', 52814.0: \"NL: Higher vocational education / University of Applied Sciences, Bachelor's degree or comparable\", 52815.0: \"NL: University, Bachelor's degree\", 52816.0: \"NL: Higher vocational education / University of Applied Sciences, Master's degree or comparable\", 52817.0: \"NL: University, Master's degree or comparable\", 52818.0: 'NL: University, doctoral degree (promotion)', 57801.0: ' NO: No education and/or preschool education', 57802.0: ' NO: Primary school (Elementary school. First part of compulsory education)\\xa0', 57803.0: ' NO: Lower secondary school (Elementary school. Second part of compulsory education)', 57804.0: ' NO: Upper secondary school basic (including vk1, folkehøgskole, realskole)', 57805.0: ' NO: Upper secondary, complete graduation (including vk2, vk3, gymnas)', 57806.0: ' NO: Supplementary program for general university admissions certification', 57807.0: ' NO: University and university college, lower degree (including B.A., cand.mag)', 57808.0: ' NO: University and university college, higher degree (including M.A.)', 57809.0: ' NO: Scientific degree (Doctoral degree, Ph.D.)', 57810.0: ' NO: Primary education', 57824.0: ' NO: Lower secondary education - general', 57825.0: ' NO: Lower secondary education - vocational', 57834.0: ' NO: Upper secondary education - general', 57835.0: ' NO: Upper secondary education - vocational', 57844.0: ' NO: Post-secondary non-tertiary education - general', 57845.0: ' NO: Post-secondary non-tertiary education - vocational', 57854.0: ' NO: Short-cycle tertiary education - general', 57855.0: ' NO: Short-cycle tertiary education - vocational', 57856.0: ' NO: Short-cycle tertiary education - orientation unspecified', 57864.0: ' NO: Bachelor’s or equivalent level - academic', 57865.0: ' NO: Bachelor’s or equivalent level - professional', 57866.0: ' NO: Bachelor’s or equivalent level - orientation unspecified', 57874.0: ' NO: Master’s or equivalent level - academic', 57875.0: ' NO: Master’s or equivalent level - professional', 57876.0: ' NO: Master’s or equivalent level - orientation unspecified', 57884.0: ' NO: Doctoral or equivalent level - academic', 57885.0: ' NO: Doctoral or equivalent level - professional', 57886.0: ' NO: Doctoral or equivalent level - orientation unspecified', 61601.0: 'PL: primary education not completed', 61602.0: 'PL: primary education (6 grades or 4 grades)', 61603.0: 'PL: primary education', 61604.0: 'PL: lower secondary', 61605.0: 'PL: basic vocational education in agriculture', 61606.0: 'PL: basic vocational education', 61607.0: 'PL: basic vocational education', 61608.0: 'PL: upper secondary education without A-level diploma', 61609.0: 'PL: upper secondary education with A-level diploma', 61610.0: 'PL: upper secondary vocational or technical education', 61611.0: 'PL: upper secondary vocational or technical education with A-level diploma', 61612.0: 'PL: diploma of technician or post secondary education', 61613.0: \"PL: post secondary education in teachers' college\", 61614.0: \"PL: BA or engineer's diploma\", 61615.0: \"PL: MA or doctor's diploma\", 61616.0: \"PL: PhD, assistant professor, professor's title\", 61617.0: 'PL: other', 62001.0: ' PT: None', 62002.0: ' PT: Basic Level 1 (until 4th grade, primary education)', 62003.0: ' PT: Basic level 2 (until 6th grade, 1st cycle of former comercial or industrial high school)', 62004.0: ' PT: Type 1 education and formation courses. Attribution of level 1 professional qualification diploma', 62005.0: ' PT: Basic Level 3 (Certificate of conclusion of one of the following grades: 9th grade; former 5th grade of high school', 62006.0: ' PT: Type 2 education and formation courses. Attribution of level 2 professional qualification diploma', 62007.0: ' PT: Types 3 and 4 education and formation courses. Attribution of level 2 professional qualification diploma', 62008.0: ' PT: Secondary Level - Scientific-Humanistic studies (certificate of conclusion of one of the following grades: 12th gra', 62009.0: ' PT: Secondary Level -technologic and artistic studies (visual and audiovisual arts, dance and music), professional cour', 62010.0: ' PT: Technologic specialisation course. Attribution of Thecnologic specialisation diploma', 62011.0: ' PT: Polytechnic superior level:3 years bacalaureat (primary school teachers, social service, agricultural manager); f', 62012.0: ' PT: Polytechnic superior level:3-4 years graduation', 62013.0: ' PT: University superior level: 3-4 years graduation: 4 years two-stage graduation', 62014.0: ' PT: Post-graduation: post-graduation specialisation without degree atribution, MBA', 62015.0: ' PT: University superior level: gradution with more than 4 years: 5 years two-stage graduation', 62016.0: ' PT: Master degree (inc. integrated master)', 62017.0: ' PT: PhD', 64200.0: ' RO: No school at all', 64201.0: ' RO: Unfinished primary school', 64202.0: ' RO: Finished primary school', 64203.0: ' RO: Unfinished gymnasia', 64204.0: ' RO: Graduated gymnasia', 64205.0: ' RO: Apprentice (complementary) school', 64206.0: ' RO: School of Arts and Crafts', 64207.0: ' RO: School of Arts and Crafts - year of completion', 64208.0: ' RO: Professional school, less than 2 years', 64209.0: ' RO: Professional school, 2-4 years', 64210.0: ' RO: Unfinished High School', 64211.0: ' RO: Completed Theoretical High School (Baccalaureate Diploma)', 64212.0: ' RO: Completed Technological / Industrial High School (Baccalaureate Diploma)', 64213.0: ' RO: Foreman school without Baccalaureate', 64214.0: ' RO: Foreman school with Baccalaureate', 64215.0: ' RO: Post-highschool without Baccalaureate', 64216.0: ' RO: Post-highschool with Baccalaureate', 64217.0: ' RO: Unfinished university studies', 64218.0: ' RO: Sub-engineers or College', 64219.0: ' RO: BA (graduated university): 3 years', 64220.0: ' RO: BA (graduated university): 4 years', 64221.0: ' RO: BA (graduated university): 5 years', 64222.0: ' RO: BA (graduated university): 6 years', 64223.0: ' RO: Master', 64224.0: ' RO: PhD', 64301.0: 'RU: Did not study in school or completed 1-2 grades on school only (incomplete primary school)', 64302.0: 'RU: Graduated 3-7 grades of secondary school without attestat on basic general education', 64303.0: 'RU: Attestat of basic general educ.–complete 7 grade (pre 1958); 8 gr.(1960-1980); 9 gr.(modern system); no profes. ed', 64304.0: 'RU: Completed general secondary educ. (10 grade by old system,11 grade by new), got attestat; no professional educ.', 64305.0: 'RU: Got primary professional educ.–grad. PTU,FSU,FSO, profes.-techn. lyceum; no attestat of compl. sec. gen. educ.(<2y', 64306.0: 'RU: Got primary professional educ.– grad. PTU, professional-techn. lyceum, with attestat of completed sec. educ.(1-3 y', 64307.0: 'RU: Got secondary professional education – graduated technikum, uchilishe, college (2-4 years of study)', 64308.0: 'RU: Got diploma of bachelor in college after 4 years of education on two-stage new education system', 64309.0: 'RU: Got diploma of master in college after additional 2 years of education on two-stage new education system', 64310.0: 'RU: Completed high education by 5-6-years system (diploma of specialist)', 64311.0: 'RU: Scientific degree (candidate, doctor of sciences)', 68801.0: ' RS: No education (under 3rd grade)', 68802.0: ' RS: Primary education lower cycle (4th – 7th grade)', 68803.0: ' RS: Primary education upper cycle (8th grade)', 68804.0: ' RS: Secondary vocational 3 yrs', 68805.0: ' RS: Secondary vocational 4 yrs', 68806.0: ' RS: Secondary general (grammar schools)', 68807.0: ' RS: 1-2 years vocational training', 68808.0: ' RS: Higher schools', 68809.0: ' RS: University: Graduate studies', 68810.0: ' RS: Postgraduate studies: Specialist studies', 68811.0: ' RS: Postgraduate studies: Magister studies (outdated)', 68812.0: ' RS: Postgraduate studies: Master studies', 68813.0: ' RS: PhD studies/ Doctor’s Degree', 70301.0: 'SK: Not completed first stage of elementary school (not completed primary level of education)', 70302.0: 'SK: Not completed second stage of elementary school (not completed lower secondary level of education)', 70303.0: 'SK: Completed lower secondary educ.(completed 8/9 y. of elementary school or courses to complete lower secondary educ.)', 70304.0: ' SK: Practical (girl) school, two-years training programmes, requalification courses without vocational certificate', 70305.0: 'SK: secondary vocational school or sec. voc. training institution or sec. voc. school without leaving exam (no maturita)', 70306.0: 'SK: Secondary vocational school with leaving exam (with maturita), secondary vocat. training institution (with maturita)', 70307.0: 'SK: Eight year grammar school - 4 year grammar school', 70308.0: 'SK: Complementary study', 70309.0: \"SK: Complementary 'postgraduate' pedagogical study\", 70310.0: \"SK: 'postgraduate' vocational study\", 70311.0: 'SK: Postgraduate specialised study with leaving certificate, Dance conservatory', 70312.0: 'SK: Secondary vocational schoool with leaving examination (maturita) - six year study', 70313.0: 'SK: Bachelors degree', 70314.0: \"SK: Master degree (engineering study, 'small' doctorate)\", 70315.0: 'SK: postgraduate pedagogical study, teaching certificate for university graduates', 70316.0: 'SK: PhD study, doctoral degree', 70501.0: 'SI: Without school education', 70502.0: 'SI: Incomplete primary education', 70503.0: 'SI: Primary education', 70504.0: 'SI: Lower or upper secondary vocational education', 70505.0: 'SI: Secondary vocational education', 70506.0: 'SI: Secondary general education', 70507.0: 'SI: Higher vocational education, post-secondary education (2 years)', 70508.0: 'SI: Higher vocational education - 1. Bologna level.', 70509.0: 'SI: Higher education university education', 70510.0: \"SI: Bologna master's degree\", 70511.0: 'SI: Specialization', 70512.0: \"SI: Master's degree\", 70513.0: 'SI: phD', 72401.0: 'ES: No studies', 72402.0: 'ES: Not completed primary studies', 72403.0: 'ES: Old Primary School (Before 1970)', 72404.0: 'ES: Up to the 5th course of EGB (Basic General Education). From 70s to 90s', 72405.0: 'ES: Up to the 6th course of Primary School', 72406.0: 'ES: Primary School in Music and Dance', 72407.0: 'ES: Elementary High School (Before 1970)', 72408.0: 'ES: Up to the 8th course of EGB (Basic General Education). From 70s to 90s', 72409.0: 'ES: Compulsory High School', 72410.0: 'ES: High School (From 70s to 90s)', 72411.0: 'ES: Pre-University Studies (before 90s)', 72412.0: 'ES: Not compulsory High School', 72413.0: 'ES: Vocational training (initiation)', 72414.0: 'ES: Vocational training (initiation) (old Law)', 72415.0: 'ES: Vocational training (first grade) (old Law)', 72416.0: 'ES: Vocational training (first grade)', 72417.0: 'ES: Vocational training (medium grade, technical in various professions such as administrative or mechanic )', 72418.0: 'ES: Vocational training (medium grade, arts and design)', 72419.0: 'ES: Vocational training (medium grade, music and dance)', 72420.0: 'ES: Vocational training (high grade, industrial) (old Law)', 72421.0: 'ES: Vocational training (high grade, general) (old Law)', 72422.0: 'ES: Vocational training (high grade, general)', 72423.0: 'ES: Vocational training (high grade in arts)', 72424.0: 'ES: Medium Tertiary studies (nursery, school teacher, social worker)', 72425.0: 'ES: Medium Tertiary studies ( building engineer, industrial or business expert)', 72426.0: 'ES: Long tertiary studies', 72427.0: 'ES: Phd', 72428.0: 'ES: Other (specify)', 75201.0: ' SE: not completed ISCED level 1', 75202.0: ' SE: ISCED 1, completed primary education', 75203.0: ' SE: Qualification from general ISCED 2A programmes, access to ISCED 3A general or all 3', 75204.0: ' SE: Old version of vocational high school', 75205.0: ' SE: Old and current version of high school education that gives access to higher education', 75206.0: ' SE: Old version of mainly vocational high school with limited access to higher education', 75207.0: ' SE: Vocational high school', 75208.0: ' SE: Technical high school, formerly 4 years at high school, currently 3 years at high school and 4th year at university', 75209.0: ' SE: Degree from one year of studies at university college.', 75210.0: ' SE: Vocational degree, qualification obtained after high school graduation, from vocational training institutes', 75211.0: ' SE: Vocational degree, obtained at university or university college, e.g. old professional nursing programmes', 75212.0: ' SE: Vocational degree, obtained after high school graduation, longer programme 2-3 years from vocational training insti', 75213.0: \" SE: Bachelor's degree or professional degree from a university college\", 75214.0: \" SE: Bachelor's degree or professional degree from a university\", 75215.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75216.0: ' SE: Masters degree from university college', 75217.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75218.0: ' SE: Masters degree from university', 75219.0: ' SE: Research degree, licantiate degree, a sort of half-way doctoral degree, old degree that is not often used', 75220.0: ' SE: Research degree, phd', 75601.0: 'CH: Incompleted primary school', 75602.0: 'CH: Primary school', 75603.0: 'CH: Secondary education (first stage)', 75604.0: 'CH: Additional year of secondary education, preparation for vocational training', 75605.0: 'CH: General training school (2-3 years)', 75606.0: 'CH: Baccalaureate preparing for university', 75607.0: 'CH: Baccalaureate for adults or apprenticeship after Baccalaureate', 75608.0: 'CH: Diploma for teaching in primary school or preprimary school', 75609.0: 'CH: Vocational baccalaureate', 75610.0: 'CH: Vocational baccalaureate for adults', 75611.0: 'CH: Elementary vocational training (enterprise and school, 1-2 year)', 75612.0: 'CH: Apprenticeship (vocational training, dual system, 3-4 years)', 75613.0: 'CH: Second vocational training (or apprenticeship as second education)', 75614.0: 'CH: Advanced vocational qualification (specialization exam, federal certif. or dipl. of advanced vocational training)', 75615.0: 'CH: Higher vocational training (high school diploma - technical, administration, health, social work, applied arts)', 75616.0: 'CH:Higher vocational training (diploma of some specific high schools withrecognition of tertiary level)', 75617.0: 'CH: University of applied science and pedagogical university (Bachelor)', 75618.0: 'CH: University of applied science and pedagogical university (Master)', 75619.0: 'CH: University diploma (intermediary level)', 75620.0: 'CH: University diploma and post-graduate (including technical) (Bachelor and short university degree)', 75621.0: 'CH: University diploma and post-graduate (including technical) (degree requiring more than 4 years)', 75622.0: 'CH: University diploma and post-graduate (including technical) (Master)', 75623.0: 'CH: Doctoral degree', 75624.0: 'CH: other', 80400.0: ' UA: Incomplete primary secondary education (less than 4 classes)', 80401.0: ' UA: Primary secondary education (1- 3(4) classes)', 80402.0: ' UA: Basic secondary education (certificate for 8(9) class)', 80403.0: ' UA: Technical-vocational education based on basic secondary education (no certificate of complete secondary education)', 80404.0: ' UA: Technical-vocational education based on of basic general secondary (certificate of general secondary education and', 80405.0: ' UA: Complete secondary education (certificate of general secondary education of 10(11) classes)', 80406.0: ' UA: Additional training training on the basis of general secondary education (vocational and general educational course', 80407.0: ' UA: Technical-vocational education on the basis of general secondary education', 80408.0: ' UA: Professional pre-higher education (diploma of junior specialist)', 80409.0: \" UA: Basic higher education (bachelor's degree)\", 80410.0: ' UA: Full higher education (specialist)', 80411.0: ' UA: Full higher education (Master or equivalent)', 80412.0: ' UA: Academic degree (candidate, doctor, PhD)', 80701.0: 'MK: Without education', 80702.0: 'MK: Completed primary education (4 years of primary school)', 80703.0: 'MK: Completed primary and lower secondary education', 80704.0: 'MK: Completed upper secondary education, vocational training - 2 years', 80705.0: 'MK: Completed upper secondary education, vocational training - 3 years', 80706.0: 'MK: Completed upper secondary education, vocational training - 4 years', 80707.0: 'MK: Completed upper secondary education, general (high school) - 4 years', 80708.0: 'MK: Completed further education - short cycle university education - 2 years', 80709.0: 'MK: Bachelor degree - 3 years', 80710.0: 'MK: Bachelor degree - 4 years', 80711.0: 'MK: Completed postgraduate studies, specialist studies - 1 year', 80712.0: 'MK: Completed postgraduate studies, specialist studies - 2 years', 80713.0: 'MK: Completed postgraduate studies, master studies - 1 year', 80714.0: 'MK: Completed postgraduate studies, master studies - 2 years', 80715.0: 'MK: Doctoral degree, completed doctorate - 5 years', 80716.0: 'MK: Doctoral degree, completed doctorate (PhD studies) - 3 years', 80788.0: 'MK: don’t know (spontaneous)', 80799.0: 'MK: no answer (spontaneous)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True51560525
v262_cs_DE1412v262_cs_DE1numericDE COUNTRY-SPECIFIC: educational level father (Q99), SCHOOL{-10.0: 'multiple answers Mail', 27601.0: 'Primary school not completed', 27602.0: 'Primary school completed, secondary school not (yet) completed', 27603.0: 'Lower secondary schools (no access to general) or polytechnic secondary school (8th or 9th grade)', 27604.0: 'Lower secondary schools (access to general) or polytechnic secondary school (10th grade)', 27605.0: 'University of Applied Science entrance qualification (specialised vocational high schools etc.)', 27606.0: 'Grammar school (University entrance qualification)', 27607.0: 'Other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True18357
v262_cs_DE2413v262_cs_DE2numericDE COUNTRY-SPECIFIC: educational level father (Q99), STUDIES{-10.0: 'multiple answers Mail', 27601.0: 'No degree', 27602.0: 'Preliminary examination, preliminary diploma', 27603.0: 'College of public administration or University of Applied Sciences (diploma)', 27604.0: 'Vocational academy (diploma)', 27605.0: 'College of public administration or University of Applied Sciences (Bachelor)', 27606.0: 'Vocational academy (Bachelor)', 27607.0: 'University (Bachelor)', 27608.0: 'College of public administration or University of Applied Sciences (Master)', 27609.0: 'Vocational academy (Master)', 27610.0: 'University (diploma, Magister, state examaniation)', 27611.0: 'University (Master or postgraduate studies)', 27612.0: 'Doctoral studies', 27613.0: 'other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True182213
v262_cs_DE3414v262_cs_DE3numericDE COUNTRY-SPECIFIC: educational level father (Q99), VOCATIONAL{-10.0: 'multiple answers Mail', 27601.0: 'No degree', 27602.0: 'Pre-vocational training, qualification of short health sector programmes', 27603.0: 'Vocational training with diploma, but no Dual System (second cycle)', 27604.0: 'Medical assistant, nurse (qualification of health sector schools (2 and 3 years)', 27605.0: 'Qualification of civil servants for the medium level', 27606.0: 'Qualification in the Dual System (second cycle), industrial or agricultural sector', 27607.0: 'Qualification in the Dual System (second cycle), sales sector', 27608.0: 'Qualification of a vocational full-time school', 27609.0: 'Occupational qualification (second cycle) for students with occupational qualification or with university entrace qualif', 27610.0: \"Master craftsmen's or Technician's qualification (or equal)\", 27611.0: 'other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True173711
v262_cs_GB1415v262_cs_GB1numericGB COUNTRY-SPECIFIC:educational level father: Up to 2 or more A-levels or equivalent (Q99a){82601.0: '2 or more A-levels or equivalent', 82602.0: ' GNVQ or GSVQ Intermediate', 82603.0: ' Vocational GCSE or equivalent', 82604.0: ' 5 or more GCSEs A*-C or equivalent', 82605.0: ' 1-4 GCSEs A*-C or equivalent', 82606.0: ' Skills for life', 82607.0: ' None of these'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True14497
v262_cs_GB2416v262_cs_GB2numericGB COUNTRY-SPECIFIC:educational level father: Up to Ph.D or equivalent (Q99b){82601.0: ' Ph.D, D.Phil or equivalent', 82602.0: ' Masters Degree, M.Phil, Post-Graduate Diplomas and Certificates', 82603.0: ' 5 year University/CNAA first Degree (MB, BDS, BV etc)', 82604.0: ' 3-4 year University/CNAA first Degree (BA, BSc., BEd., BEng. Etc)', 82605.0: ' Nursing certificate, Teacher training, HE Diploma, Edexcel/BTEC/BEC/TEC/HND, City and Guilds, NVQ/SVQ - Leve', 82606.0: ' Foundation Degree (FdA, FdSc etc)', 82607.0: ' Edexcel/BTEC/BEC/TEC - Higher National Certificate (HNC) or equivalent', 82608.0: ' HE Access', 82609.0: ' Vocational A-level (AVCE), GCE Applied A-level, NVQ/SVQ Level 3, GNVQ/GSVQ Advanced, Edexcel/BTEC/BEC/TEC (G', 82610.0: ' (Modern) Apprenticeship, Advanced (Modern) Apprenticeship, SVQ/NVQ/Key Skills Level 1 and 2, City and Guild', 82611.0: ' None of these', 82612.0: ' Any other qualifications (specify)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True145612
v263_edulvlb417v263_edulvlbnominaleducational level mother: ESS-edulvlb coding (Q100){0.0: 'Not completed ISCED 1', 113.0: 'Completed ISCED 1', 129.0: 'short vocational ISCED 2', 212.0: 'General/pre-vocational ISCED 2 with access to 32x', 213.0: 'General ISCED 2 with access to all ISCED 3', 221.0: 'Vocational ISCED 2 without access to ISCED 3', 222.0: 'Vocational ISCED 2 with access to 32x only', 223.0: 'Vocational ISCED 2 with access to all ISCED 3', 229.0: 'short vocational ISCED 3', 311.0: 'General ISCED 3 without access to tertiary', 312.0: 'General ISCED 3 with access to non-university tertiary only', 313.0: 'General ISCED 3 with access to university', 321.0: 'Vocational ISCED 3 without access to tertiary', 322.0: 'Vocational ISCED 3 with access to non-university tertiary only', 323.0: 'Vocational ISCED 3 with access to university', 412.0: 'General ISCED 4, with access to non-university tertiary only', 413.0: 'General ISCED 4 with access to all first degrees at ISCED 6/7', 421.0: 'Vocational ISCED 4 without access to tertiary', 422.0: 'Vocational ISCED 4, with access to non-university tertiary only', 423.0: 'Vocational ISCED 4, with access to university', 510.0: \"University qualification below bachelor's degree\", 520.0: \"Non-university qualification below bachelor's degree\", 610.0: \"Non-university bachelor's degree\", 620.0: \"University bachelor's degree\", 710.0: \"Non-university master's degree\", 720.0: \"University master's degree\", 800.0: 'Doctoral degree', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5502828
v263_edulvlb_2418v263_edulvlb_2nominaleducational level mother: ESS-edulvlb coding two digits (Q100){0.0: 'Less than primary', 11.0: 'Primary: general education', 12.0: 'Primary: vocational programmes', 21.0: 'Lower secondary: general education', 22.0: 'Lower secondary: vocational programmes', 31.0: 'Upper secondary: general education', 32.0: 'Upper secondary: vocational programmes', 41.0: 'Post-secondary non tertiary: general education', 42.0: 'Post-secondary non tertiary: vocational programmes', 51.0: 'Short-cycle tertiary: general education', 52.0: 'Short-cycle tertiary: vocational programmes', 61.0: 'Bachelor or equivalent: general education', 62.0: 'Bachelor or equivalent: vocational programmes', 71.0: 'Master or equivalent: general education', 72.0: 'Master or equivalent: vocational programmes', 80.0: 'Doctoral or equivalent', 666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5502817
v263_edulvlb_1419v263_edulvlb_1nominaleducational level mother: ESS-edulvlb coding one digit (Q100){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5502810
v263_ISCED_3420v263_ISCED_3numericeducational level mother: ISCED-code three digit (Q100){0.0: 'Less than primary', 100.0: 'Primary', 244.0: 'General lower secondary with direct access to upper secondary', 253.0: 'Vocational lower secondary without direct access to upper secondary', 254.0: 'Vocational lower secondary with direct access to upper secondary', 343.0: 'General upper secondary without direct access to first tertiary programmes', 344.0: 'General upper secondary with direct access to first tertiary programmes', 353.0: 'Vocational upper secondary without direct access to first tertiary programmes', 354.0: 'Vocational upper secondary with direct access to first tertiary programmes', 444.0: 'General post-secondary non-tertiary with direct access to first tertiary programmes', 453.0: 'Vocational post-secondary non-tertiary without direct access to first tertiary programmes', 454.0: 'Vocational post-secondary non-tertiary with direct access to first tertiary programmes', 540.0: 'General short-cycle tertiary', 550.0: 'Vocational short-cycle tertiary', 640.0: 'Academic Bachelor’s or equivalent level', 650.0: 'Professional Bachelor’s or equivalent level', 740.0: 'Academic Master’s or equivalent level', 750.0: 'Professional Master’s or equivalent level', 800.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5502820
v263_ISCED_2421v263_ISCED_2numericeducational level mother: ISCED-code two digit (Q100){0.0: 'Pre-primary education', 10.0: 'Primary education', 24.0: 'Lower secondary general education', 25.0: 'Lower secondary vocational education', 34.0: 'Upper secondary general education', 35.0: 'Upper secondary vocational education', 44.0: 'Post-secondary non-tertiary general education', 45.0: 'Post-secondary non-tertiary vocational education', 54.0: 'Short-cycle tertiary general education', 55.0: 'Short-cycle tertiary vocational education', 64.0: 'Bachelor’s or equivalent level, academic', 65.0: 'Bachelor’s or equivalent level, professional', 74.0: 'Master’s or equivalent level, academic', 75.0: 'Master’s or equivalent level, professional', 80.0: 'Doctoral or equivalent level', 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5502816
v263_ISCED_2b422v263_ISCED_2bnominaleducational level mother: ISCED-code two digit, second option (Q100){0.0: 'Less than primary', 10.0: 'Primary', 23.0: 'Lower secondary, no access to upper secondary education', 24.0: 'Lower secondary, access to upper secondary education', 33.0: 'Upper secondary, no access to upper secondary education', 34.0: 'Upper secondary, access to upper secondary education', 43.0: 'Post-secondary non-tertiary, no access to upper secondary education', 44.0: 'Post-secondary non-tertiary, access to upper secondary education', 50.0: 'Short-cycle tertiary education', 60.0: 'Bachelor’s or equivalent level', 70.0: 'Master or equivalent level', 80.0: 'Doctorate or equivalent level', 6666.0: 'Other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True5502813
v263_ISCED_1423v263_ISCED_1nominaleducational level mother: ISCED-code one digit (Q100){0.0: 'Less than primary', 1.0: 'Primary', 2.0: 'Lower secondary', 3.0: 'Upper secondary', 4.0: 'Post-secondary non tertiary', 5.0: 'Short-cycle tertiary', 6.0: 'Bachelor or equivalent', 7.0: 'Master or equivalent', 8.0: 'Doctoral or equivalent', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5613010
v263_EISCED424v263_EISCEDnumericeducational level mother: ES-ISCED coding (Q100){0.0: 'No formal or less than primary education', 1.0: 'I - Primary education', 2.0: 'II - Lower secondary (including vocational training that is not considered as completion of upper secondary education)', 3.0: 'IIIb - Upper secondary without access to higher education', 4.0: 'IIIa - Upper secondary with access to higher education', 5.0: 'IV - Post-secondary/advanced vocational education below bachelor’s degree level', 6.0: \"V1 - Bachelor's level\", 7.0: \"V2 - Master's and higher level\", 6666.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow up non response', -7.0: 'matrix not applied', -6.0: 'survey break-off', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True550289
v263_ISCED97425v263_ISCED97numericeducational level mother: ISCED97-code one digit (Q99){0.0: ' 0 : Pre-primary education or none education', 1.0: ' 1 : Primary education or first stage of basic education', 2.0: ' 2 : Lower secondary or second stage of basic education', 3.0: ' 3 : (Upper) secondary education', 4.0: ' 4 : Post-secondary non-tertiary education', 5.0: ' 5 : First stage of tertiary education', 6.0: ' 6 : Second stage of tertiary education'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True550288
v263_8cat426v263_8catnumericeducational level mother: 8 categories (Q100){-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', 1.0: ' Inadequately completed elementary education', 2.0: ' Completed (compulsory) elementary education', 3.0: ' Incomplete secondary school: technical/vocational type', 4.0: ' Complete secondary school: technical/vocational type/secondary', 5.0: ' Incomplete secondary: university-preparatory type/secondary', 6.0: ' Complete secondary: university-preparatory type/full secondary', 7.0: ' Some university without degree/higher education - lower-level tertiary', 8.0: ' University with degree/higher education - upper-level tertiary'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True550289
v263_r427v263_rnominaleducational level mother: recoded (Q100){1.0: 'lower', 2.0: 'medium', 3.0: 'higher', 66.0: 'other'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True561304
v263_cs428v263_csnumericeducational level mother: country-specific, ISO 3166-1 (Q100){801.0: ' AL: Without school', 802.0: ' AL: Primary education', 803.0: ' AL: Lower secondary (Leaving certificate)', 804.0: ' AL: Upper secondary general (Maturity diploma)', 805.0: ' AL: Upper secondary vocational (2 years, certificate of high technical or vocational education)', 806.0: ' AL: Upper secondary vocational (over 2 years, Maturity diplome)', 807.0: ' AL: Post-secondary non tertiary', 808.0: ' AL: University diploma/Bachelor', 809.0: ' AL: Vocational/Professional Master', 810.0: ' AL: Post-University', 811.0: ' AL: Master of Arts', 812.0: ' AL: Master of Science', 813.0: ' AL: Long term specialization', 814.0: ' AL: Doctoral Degree', 877.0: ' AL: not applicable', 888.0: ' AL: don’t know (spontaneous)', 899.0: ' AL: no answer (spontaneous)', 3101.0: ' AZ: None', 3102.0: ' AZ: Primary education (1-4 years)', 3103.0: ' AZ: Incomplete general secondary (5-8 grades)', 3104.0: ' AZ: General secondary education (9 grades)', 3105.0: ' AZ: Complete secondary education (11 grades)', 3106.0: ' AZ: Primary vocational-professional education (Vocational school/lyceum) (1-3 years)', 3107.0: ' AZ: Secondary special education (Technical school/College) (2-4 years)', 3108.0: ' AZ: Bachelor degree (4 years)', 3109.0: ' AZ: Master degree (2 years)', 3110.0: ' AZ: Science degree (former Aspirantura/PhD): Doctor of Philosophy, Doctor of Science', 3188.0: ' AZ: don’t know (spontaneous)', 3199.0: ' AZ: no answer (spontaneous)', 4001.0: 'AT: Not completed', 4002.0: 'AT: Completed primary education', 4003.0: 'AT: Completed Lower Secundary Education, New Secundary School', 4004.0: 'AT: Completed Polytechnic School, or one-year Middle School', 4005.0: 'AT: Completed Academic Secondary School (AHS), elementary level', 4006.0: 'AT: Completed apprenticeship (final apprenticeship examination)', 4007.0: 'AT: Completed Vocational Middle School (at least 2 years, e.g. commercial school, professional school)', 4008.0: 'AT: Completed Higher School Certificate (matriculation, general qualification for university entrance)', 4009.0: 'AT: Completed degree in health or nursing care', 4010.0: 'AT: Completed Higher School Certificate in Vocational Higher School', 4011.0: 'AT: Completed advanced vocational training', 4012.0: 'AT: Completed pedagoical/educational/medical degree', 4013.0: \"AT: Completed Bachelor's degree at a university of applied sciences\", 4014.0: \"AT: Completed Bachelor's degree at a university\", 4015.0: \"AT: Completed Master's degree at a university of applied sciences\", 4016.0: \"AT: Completed Master's degree at a university of applied sciences\", 4017.0: 'AT: Completed post-graduate university courses (e.g. MBA)', 4018.0: 'AT: Completed doctorate/PhD', 4019.0: 'AT: other', 5101.0: 'AM: Never went to school', 5102.0: 'AM: Less than 4 years of education', 5103.0: 'AM: 4 years of primary education', 5104.0: 'AM: Certificate of lower secondary/ basic secondary education, 9 years', 5105.0: 'AM: Certificate of initial vocational education after lower /basic education', 5106.0: 'AM: Advanced vocational education after lower /basic education', 5107.0: 'AM: Certificate of upper secondary education, 12 years', 5108.0: 'AM: Certificate of initial vocational training after upper secondary education', 5109.0: 'AM: Advanced vocational education after upper secondary education', 5110.0: 'AM: Bachelor degree 4 years', 5111.0: 'AM: Specialist degree', 5112.0: 'AM: Master degree 2 years', 5113.0: 'AM: Phd and habilitation', 7001.0: 'BA: No school (up to three grades of elementary school)', 7002.0: 'BA: Unfinished elementary school (4 to 7 grades)', 7003.0: 'BA: Completed elementary school', 7004.0: 'BA: Secondary vocational school up to 1-2 years', 7005.0: 'BA: Secondary vocational school up to 3 years', 7006.0: 'BA: Technical and related secondary vocational schools up to 4 years or more', 7007.0: 'BA: High school', 7008.0: 'BA: Professional study up to 2-3 years', 7009.0: \"BA: Undergraduate university study - for the academic title 'baccalaureus' (3-4 years); Art academy (undergraduate stud\", 7010.0: 'BA: Specialist graduate professional study (4-5 years); Specialist in the profession', 7011.0: 'BA: Graduate university study (4-6 years) - old program', 7012.0: \"BA: Master's degree (5 years); Art academy (graduate study)\", 7013.0: \"BA: Master's degree of Science or completed postgraduate specialist studies\", 7014.0: 'BA: Postgraduate Doctorate of Science', 10001.0: 'BG: Incomplete primary education', 10002.0: 'BG: Primary education', 10003.0: 'BG: Basic education', 10004.0: 'BG: Secondary general education', 10005.0: 'BG: Secondary special education Language Schools, Mathematics and Natural Science', 10006.0: 'BG: Secondary special education Arts and Sports', 10007.0: 'BG: Secondary vocational education', 10008.0: 'BG: Semi-higher education', 10009.0: 'BG: College - Professional bachelor', 10010.0: 'BG: Higher education - Bachelor', 10011.0: 'BG: Higher education - Master', 10012.0: 'BG: Doctor of science', 11201.0: 'BY: No education', 11202.0: 'BY: Primary school', 11203.0: 'BY: Certificate of lower secondary general education', 11204.0: 'BY: Certificate of upper general secondary education', 11205.0: 'BY: 1-2 year vocational education after lower secondary education', 11206.0: 'BY: Vocational training with upper secondary general training in parallel', 11207.0: 'BY: Certificate of upper vocational education with upper secondary general education', 11208.0: \"BY: Bachelor's Degree\", 11209.0: \"BY: Higher education, Specialist's Diploma\", 11210.0: \"BY: Master's degree\", 11211.0: 'BY: PhD', 11212.0: 'BY: Habilitation', 19101.0: 'HR: No school (up to three grades of elementary school)', 19102.0: 'HR: Unfinished elementary school (4 to 7 grades)', 19103.0: 'HR: Completed elementary school', 19104.0: 'HR: Secondary vocational school up to 1-2 years', 19105.0: 'HR: Secondary vocational school up to 3 years', 19106.0: 'HR: Technical and related secondary vocational schools up to 4 years or more', 19107.0: 'HR: High school', 19108.0: 'HR: Professional study up to 2-3 years', 19109.0: \"HR: Undergraduate university study; for academic title 'baccalaureus' (3-4 years); Art academy (undergraduate study)\", 19110.0: 'HR: Specialist graduate professional study (4-5 years); Specialist in the profession', 19111.0: 'HR: Graduate university study (4-6 years) - old program', 19112.0: \"HR: Master's degree (5 years); Art academy (graduate study)\", 19113.0: \"HR: Master's degree of Science or completed postgraduate specialist studies\", 19114.0: 'HR: Postgraduate Doctorate of Science', 20301.0: 'CZ Incomplete elementary education, unfinished 1st level (less than 5 grades/years)', 20302.0: 'CZ: Incomplete basic education (5+ years of schooling, only primary school completed, SZŠ, ZZŠ, general school)', 20303.0: 'CZ: Basic education (bougeois school)', 20304.0: 'CZ: Secondary education with an apprenticeship certificate, Secondary education without school-leaving examination', 20305.0: 'CZ: Secondary education without leaving examination followed by further studies with final exam (teaching, retraining)', 20306.0: 'CZ: Education with GCSE, full secondary vocational education with GCSE', 20307.0: 'CZ: Secondary educ. with school-leaving exam followed by studies with final exam (post-gr., follow-up courses etc)', 20308.0: 'CZ: Secondary general education with school-leaving examination (grammar school)', 20309.0: 'CZ: Post-secondary education with diploma: Higher vocational school (DiS), 5th and 6th year of conservatory (discharge)', 20310.0: \"CZ: Bachelor's degree\", 20311.0: \"CZ: Master's degree education (Mgr., Ing., Ing., MUDr., MDDr., MVDr., …)\", 20312.0: 'CZ: Doctoral studies, postgraduate education (Ph.D., Th.D., CSc, ...)', 20801.0: ' DK: municipal primary and lower secondary school: 5th grade or lower', 20802.0: ' DK: municipal primary and lower secondary school: 6th grade to 8th grade', 20803.0: ' DK: municipal primary and lower secondary school: 9th grade to 10th grade', 20804.0: \" DK: '(Upper) Secondary Education: Gymnasium, Higher Preparatory Examination (HF), Higher Commercial Examination Program\", 20805.0: ' DK: Semiskilled worker courses and short vocational education (less than 2 years)', 20806.0: ' DK: Vocational and technical (upper) secondary education', 20807.0: ' DK: Short-cycle higher non-university programmes (2-3 years)', 20808.0: ' DK: medium-cycle university and non-university programmes, proffesional bachelor degree (3-4 years)', 20809.0: ' DK: long-cycle university programmes, 1 part - university bachelor degree', 20810.0: ' DK: long-cycle university programmes, 2. part Kandidat degree (Masters) (5-6 years)', 20811.0: ' DK: Licentiat (closed research education program)', 20812.0: ' DK: Research Education, PhD., Doctor', 20813.0: ' DK: other', 23301.0: 'EE: Without primary education (less than 4 grades)', 23302.0: 'EE: Completed primary education (4-6 grades)', 23303.0: 'EE: Vocational education without completed primary education', 23304.0: 'EE: Completed basic education (7-9 grades)', 23305.0: 'EE: Vocational secondary education after basic education (training programme under 2 years)', 23306.0: 'EE: Completed secondary education', 23307.0: 'EE: Vocational secondary education after basic education (training programme 2 years or more)', 23308.0: 'EE: Vocational secondary education with secondary education or vocational secondary education (tehnical education) afte', 23309.0: 'EE: Vocational-secondary education (tehnical education) after secondary education', 23310.0: 'EE: Vocational university after secondary education diploma (up to 2 years trainings, but not Bachelor of Arts)', 23311.0: 'EE: Higher vocational education diploma or Bachelor of Arts degree (3-4 years of trainings)', 23312.0: 'EE: University Bachelor of Arts degree (3-4 years of trainings', 23313.0: 'EE: Master of Arts from Vocational university', 23314.0: 'EE: Master of Arts\\xa0(3+2, 4+2 or by 5+4 system, incl. integrated BA and MA), higher education started before 1992 (speci', 23315.0: \"EE: Doctor's degree\", 24601.0: ' FI: Less than primary school (grades 1-6) or less than comprehensive school', 24602.0: \" FI: Grades 1-6 of comprehensive school, or primary school or people's school\", 24603.0: ' FI: Grades 7-9 of comprehensive school, or middle school', 24604.0: ' FI: General upper secondary school, matriculation examination', 24605.0: ' FI: Vocational upper secondary qualification, further vocational qualification', 24606.0: ' FI: Both matriculation examination and vocational qualification', 24607.0: ' FI: Specialist vocational qualification', 24608.0: ' FI: Post-secondary level vocational qualification (old)', 24609.0: \" FI: Bachelors' degree in universities of applied sciences (polytechnic)\", 24610.0: \" FI: Bachelors' degree in university\", 24611.0: \" FI: Master's degree in universities of applied sciences (polytechnic)\", 24612.0: \" FI: Master's degree in university\", 24613.0: ' FI: Licentiate degree', 24614.0: ' FI: Doctoral degree', 24615.0: ' FI: other', 25001.0: ' FR: no schooling or not completed primary education', 25002.0: \" FR: Completed primary education, without the final certificate (Certificat d'études primaires=an old qualification off\", 25003.0: \" FR: Completed primary education, with the Certificat d'études primaires\", 25004.0: \" FR: Secondary education 1st cycle, without the final certificate (Brevet élémentaire, Brevet d'étude du premier cycl\", 25005.0: \" FR: Secondary education 1st cycle, with the final certificate (Brevet élémentaire, Brevet d'étude du premier cycle,\", 25006.0: ' FR: Secondary education 2nd cycle, without the final exam (Baccalauréat)', 25007.0: \" FR: Certificate of vocational ability : Certificat d'Aptitude Professionnelle (CAP) or Brevet d'Etudes Professionnelles\", 25008.0: ' FR: Vocational qualification in care (home care, children care, health care)', 25009.0: ' FR: Vocational Baccalaureat', 25010.0: ' FR: Technological Baccalaureat or equivalent diploma', 25011.0: ' FR: General Baccalaureat or equivalent diploma', 25012.0: ' FR: Certificate of ability in Law, Diploma allowing admission in tertiary education', 25013.0: ' FR: Qualifications of vocational secondary education in health and care institutions (like Moniteur éducateur and equi', 25014.0: ' FR: University education, 1st cycle Diploma in general tertiary education (2 years), classes for competitive entrance', 25015.0: ' FR: Diploma in Technological Studies , Diploma of Advanced Technician', 25016.0: ' FR: Qualification in paramedical and social sectors (social assistant, etc,)', 25017.0: ' FR: Vocational Bachelor (University education, 1st graduation and apprenticeship)', 25018.0: ' FR: Bachelor (University education, 2nd cycle, 1st year and apprenticeship)', 25019.0: ' FR: Engineer Degree', 25020.0: ' FR: Vocational Master Degree', 25021.0: ' FR: Intermediate Master degree (university education, 2nd cycle, 2nd year), qualification of primary and secondary educ', 25022.0: ' FR: Research Master Degree, qualification of university education teachers', 25023.0: ' FR: Qualifications of architects, veterinaries, notaries', 25024.0: ' FR: Diplôma from selective “grandes écoles”', 25025.0: ' FR: Doctorate in medecine, odontology, pharmacy', 25026.0: ' FR: Doctorate', 26801.0: 'GE: No education', 26802.0: 'GE: Less than 6 years primary education', 26803.0: 'GE: Primary education completed, 6 years', 26804.0: 'GE: Basic/ lower general education certificate, 9 years', 26805.0: 'GE: Upper secondary general education certificate', 26806.0: 'GE: Professional diploma level 1, 2, or 3 (Vocational Education certificate, before 2010)', 26807.0: 'GE: Professional diploma level 4/5 (Secondary Vocational Educ. Certificate pre-2010, Certified Diploma 2008-2010)', 26808.0: 'GE: Interim qualification, short cycle tertiary education', 26809.0: 'GE: Bachelor degree', 26810.0: 'GE: Master degree', 26811.0: 'GE: Specialist studies', 26812.0: 'GE: Doctoral degree', 34801.0: 'HU: Never attented school; 1-3 years of primary school or equivalent', 34802.0: 'HU: 4-7 years of primary school or equivalent', 34803.0: 'HU: Completed primary school or equivalent', 34804.0: 'HU: Vocational school', 34805.0: 'HU: Vocational training after the 10. grade', 34806.0: 'HU: Completed secondary vocational education with school-leaving exam', 34807.0: 'HU: Completed secondary general education (Gymnasium) with school-leaving exam', 34808.0: 'HU: Post-secondary, mon-tertiary vocational education and training (E.g. technical school)', 34809.0: 'HU: Short-cycle tertiary level vocational education and training (VET)', 34810.0: \"HU: College degree or college bachelor's degree - BA/BSc\", 34811.0: \"HU: University bachelor's degree - BA/BSc\", 34812.0: \"HU: College master's degree - MA/MSc\", 34813.0: \"HU: University degree or university master's degree - MA/MSc\", 34814.0: 'HU: Doctoral degree', 35201.0: 'IS: Less than primary education', 35202.0: 'IS: Primary education', 35203.0: 'IS: Elementary school, 14–15 years of age', 35204.0: 'IS: National test', 35205.0: 'IS: Elementary school, 15–16 years of age (compulsory education)', 35206.0: 'IS: Elementary school, 16–17 years of age', 35207.0: 'IS: Vocational education at the lower secondary level', 35208.0: 'IS: Post-secondary non-tertiary education', 35209.0: 'IS: Other post-secondary, non-tertiary vocational education', 35210.0: 'IS: Upper secondary art education, 2+ years', 35211.0: 'IS: Certified trades, school diploma', 35212.0: 'IS: Matriculation examination', 35213.0: 'IS: Upper secondary education', 35214.0: 'IS: Master of a certified trade', 35215.0: 'IS: Tertiary general education, 2–3 years', 35216.0: 'IS: Tertiary vocational education, 2–3 years', 35217.0: 'IS: Bachelor’s or equivalent level', 35218.0: 'IS: Master’s or equivalent level', 35219.0: 'IS: Doctoral or equivalent level', 38001.0: ' IT: No title', 38002.0: ' IT: Elementary school diploma', 38003.0: ' IT: Vocational training', 38004.0: ' IT: Middle school diploma', 38005.0: ' IT: Post-obligation vocational regional qualification', 38006.0: \" IT: Vocational institute diploma (2 or 3 years), including art teacher diploma, teacher's training school diploma and n\", 38007.0: ' IT: High school diploma (5 years), technical or vocational institute, including art institute five years diploma', 38008.0: ' IT: High school diploma (4 or 5 years), classical, scientific, linguistic or psyco-pedagogical, musical lyceum, includi', 38009.0: ' IT: Post-(high school) diploma specialization, post-(high school) diploma vocational regional qualification, certificat', 38010.0: ' IT: Former system academic diploma (2 or 3 years), including higher institute of physical education, social service and', 38011.0: ' IT: Tertiary education not academic diploma: Music Conservatory, Academy of Fine Arts and similar', 38012.0: ' IT: Three years or first level degree (bachelor)', 38013.0: ' IT: First level specialization degree', 38014.0: \" IT: Former system degree, master's degree, single cycle degree\", 38015.0: ' IT: Second level specialization degree', 38016.0: ' IT: Post-graduate specialization (1 or 2 years)', 38017.0: ' IT: Post-graduate specialization (3 or 4 years), including medical specialization', 38018.0: ' IT: Doctoral degree', 42801.0: ' LV: Has not attended school', 42802.0: ' LV: Incompete primary education ( 6 grades)', 42803.0: ' LV: General primary education', 42804.0: ' LV: Basic vocational education', 42805.0: ' LV: Vocational education (without secondary) (1 year)', 42806.0: ' LV: Vocational education (without secondary) (3 years)', 42807.0: ' LV: General secondary education', 42808.0: ' LV: Vocational secondary education', 42809.0: ' LV: Vocational (not higher) education after general secondary education', 42810.0: ' LV: 1st level professional/ vocational higher education (college)', 42811.0: \" LV: Bachelor's degree (professional)\", 42812.0: \" LV: Bachelor's degree (academic)\", 42813.0: \" LV: Master's degree (professional)\", 42814.0: \" LV: Master's degree (academic)\", 42815.0: ' LV: Higher education obtained during the Soviet era', 42816.0: ' LV: Doctoral degree', 44000.0: ' LT: Less than primary', 44001.0: ' LT: Primary', 44002.0: ' LT: Lower general vocational', 44003.0: ' LT: General/ lower secondary', 44004.0: ' LT: General vocational', 44005.0: ' LT: Lower vocational after general', 44006.0: ' LT: Vocational after general', 44007.0: ' LT: Secondary', 44008.0: ' LT: Vocational with secondary', 44009.0: ' LT: Vocational after secondary', 44010.0: ' LT: Upper general and secondary vocational', 44011.0: ' LT: Upper secondary vocational', 44012.0: ' LT: Higher non university', 44013.0: ' LT: Higher university education (BA)', 44014.0: ' LT: Higher university education (MA)', 44015.0: ' LT: Higher university integrated education (I and II stages - 6 years)', 44016.0: ' LT: Doctoral studies and diploma', 49901.0: ' ME: No education', 49902.0: ' ME: Completed 4 years of primary education', 49903.0: ' ME: Completed lower secondary education', 49904.0: ' ME: 1-2 years vocational training', 49905.0: ' ME: Completed high school lasting three years', 49906.0: ' ME: Certificate of upper secondary vocational education (4 years)', 49907.0: ' ME: Secondary general (grammar schools, 4 years)', 49908.0: ' ME: Vocational exam', 49909.0: ' ME: Primary level diploma (after two or three years of bachelor level pre-Bologne reform)', 49910.0: ' ME: Completed two years of higher education that provides basic certificate but not entrance to MA studies', 49911.0: ' ME: Vocational studies (in duration of three years)', 49912.0: ' ME: Bachelor studies in duration of 3 years', 49913.0: ' ME: Specialization studies or four year studies in pre-Bologne system', 49914.0: ' ME: Master studies in duration of one year; Integrated studies (five year studies); Specialization studies', 49915.0: ' ME: Magister studies, Studies of medicine (in duration of 6 years, in old system), Specialisation', 49916.0: ' ME: PhD', 52801.0: 'NL: No completed primary education', 52802.0: 'NL: Primary education', 52803.0: \"NL: Pre-vocational program ('vmbo level 1, 2 or 3' or 'lbo') or comparable\", 52804.0: \"NL: Preparatory secondary vocational education ('mavo' (previous 'vmbo') or 'vmbo level 4') or comparable\", 52805.0: 'NL: Intermediate vocational educational, level 1 (duration 2 year)', 52806.0: \"NL: Senior general secondary school ('havo') or comparable\", 52807.0: \"NL: Pre-university education ('vwo' or gymnasium) or comparable\", 52808.0: \"NL: kmbo', 'meao', 'mts' or comparable (duration 2-3 years)\", 52809.0: 'NL: Intermediate vocational education , levels 2 and 3 (duration 2-3 years)', 52810.0: 'NL: Intermediate vocational education , level 4 (duration 4 years)', 52811.0: \"NL: Intermediate vocational education plus (for people that completed 'havo')\", 52812.0: 'NL: First year of university, Bachelor (propaedeutics)', 52813.0: 'NL: Shorter higher vocational education, shorter University of Applied Sciences (duration 2 or 3 years)', 52814.0: \"NL: Higher vocational education / University of Applied Sciences, Bachelor's degree or comparable\", 52815.0: \"NL: University, Bachelor's degree\", 52816.0: \"NL: Higher vocational education / University of Applied Sciences, Master's degree or comparable\", 52817.0: \"NL: University, Master's degree or comparable\", 52818.0: 'NL: University, doctoral degree (promotion)', 57801.0: ' NO: No education and/or preschool education', 57802.0: ' NO: Primary school (Elementary school. First part of compulsory education)\\xa0', 57803.0: ' NO: Lower secondary school (Elementary school. Second part of compulsory education)', 57804.0: ' NO: Upper secondary school basic (including vk1, folkehøgskole, realskole)', 57805.0: ' NO: Upper secondary, complete graduation (including vk2, vk3, gymnas)', 57806.0: ' NO: Supplementary program for general university admissions certification', 57807.0: ' NO: University and university college, lower degree (including B.A., cand.mag)', 57808.0: ' NO: University and university college, higher degree (including M.A.)', 57809.0: ' NO: Scientific degree (Doctoral degree, Ph.D.)', 57810.0: ' NO: Primary education', 57824.0: ' NO: Lower secondary education - general', 57825.0: ' NO: Lower secondary education - vocational', 57834.0: ' NO: Upper secondary education - general', 57835.0: ' NO: Upper secondary education - vocational', 57844.0: ' NO: Post-secondary non-tertiary education - general', 57845.0: ' NO: Post-secondary non-tertiary education - vocational', 57854.0: ' NO: Short-cycle tertiary education - general', 57855.0: ' NO: Short-cycle tertiary education - vocational', 57856.0: ' NO: Short-cycle tertiary education - orientation unspecified', 57864.0: ' NO: Bachelor’s or equivalent level - academic', 57865.0: ' NO: Bachelor’s or equivalent level - professional', 57866.0: ' NO: Bachelor’s or equivalent level - orientation unspecified', 57874.0: ' NO: Master’s or equivalent level - academic', 57875.0: ' NO: Master’s or equivalent level - professional', 57876.0: ' NO: Master’s or equivalent level - orientation unspecified', 57884.0: ' NO: Doctoral or equivalent level - academic', 57885.0: ' NO: Doctoral or equivalent level - professional', 57886.0: ' NO: Doctoral or equivalent level - orientation unspecified', 61601.0: 'PL: primary education not completed', 61602.0: 'PL: primary education (6 grades or 4 grades)', 61603.0: 'PL: primary education', 61604.0: 'PL: lower secondary', 61605.0: 'PL: basic vocational education in agriculture', 61606.0: 'PL: basic vocational education', 61607.0: 'PL: basic vocational education', 61608.0: 'PL: upper secondary education without A-level diploma', 61609.0: 'PL: upper secondary education with A-level diploma', 61610.0: 'PL: upper secondary vocational or technical education', 61611.0: 'PL: upper secondary vocational or technical education with A-level diploma', 61612.0: 'PL: diploma of technician or post secondary education', 61613.0: \"PL: post secondary education in teachers' college\", 61614.0: \"PL: BA or engineer's diploma\", 61615.0: \"PL: MA or doctor's diploma\", 61616.0: \"PL: PhD, assistant professor, professor's title\", 61617.0: 'PL: other', 62001.0: ' PT: None', 62002.0: ' PT: Basic Level 1 (until 4th grade, primary education)', 62003.0: ' PT: Basic level 2 (until 6th grade, 1st cycle of former comercial or industrial high school)', 62004.0: ' PT: Type 1 education and formation courses. Attribution of level 1 professional qualification diploma', 62005.0: ' PT: Basic Level 3 (Certificate of conclusion of one of the following grades: 9th grade; former 5th grade of high school', 62006.0: ' PT: Type 2 education and formation courses. Attribution of level 2 professional qualification diploma', 62007.0: ' PT: Types 3 and 4 education and formation courses. Attribution of level 2 professional qualification diploma', 62008.0: ' PT: Secondary Level - Scientific-Humanistic studies (certificate of conclusion of one of the following grades: 12th gra', 62009.0: ' PT: Secondary Level -technologic and artistic studies (visual and audiovisual arts, dance and music), professional cour', 62010.0: ' PT: Technologic specialisation course. Attribution of Thecnologic specialisation diploma', 62011.0: ' PT: Polytechnic superior level:3 years bacalaureat (primary school teachers, social service, agricultural manager); f', 62012.0: ' PT: Polytechnic superior level:3-4 years graduation', 62013.0: ' PT: University superior level: 3-4 years graduation: 4 years two-stage graduation', 62014.0: ' PT: Post-graduation: post-graduation specialisation without degree atribution, MBA', 62015.0: ' PT: University superior level: gradution with more than 4 years: 5 years two-stage graduation', 62016.0: ' PT: Master degree (inc. integrated master)', 62017.0: ' PT: PhD', 64200.0: ' RO: No school at all', 64201.0: ' RO: Unfinished primary school', 64202.0: ' RO: Finished primary school', 64203.0: ' RO: Unfinished gymnasia', 64204.0: ' RO: Graduated gymnasia', 64205.0: ' RO: Apprentice (complementary) school', 64206.0: ' RO: School of Arts and Crafts', 64207.0: ' RO: School of Arts and Crafts - year of completion', 64208.0: ' RO: Professional school, less than 2 years', 64209.0: ' RO: Professional school, 2-4 years', 64210.0: ' RO: Unfinished High School', 64211.0: ' RO: Completed Theoretical High School (Baccalaureate Diploma)', 64212.0: ' RO: Completed Technological / Industrial High School (Baccalaureate Diploma)', 64213.0: ' RO: Foreman school without Baccalaureate', 64214.0: ' RO: Foreman school with Baccalaureate', 64215.0: ' RO: Post-highschool without Baccalaureate', 64216.0: ' RO: Post-highschool with Baccalaureate', 64217.0: ' RO: Unfinished university studies', 64218.0: ' RO: Sub-engineers or College', 64219.0: ' RO: BA (graduated university): 3 years', 64220.0: ' RO: BA (graduated university): 4 years', 64221.0: ' RO: BA (graduated university): 5 years', 64222.0: ' RO: BA (graduated university): 6 years', 64223.0: ' RO: Master', 64224.0: ' RO: PhD', 64301.0: 'RU: Did not study in school or completed 1-2 grades on school only (incomplete primary school)', 64302.0: 'RU: Graduated 3-7 grades of secondary school without attestat on basic general education', 64303.0: 'RU: Attestat of basic general educ.–complete 7 grade (pre 1958); 8 gr.(1960-1980); 9 gr.(modern system); no profes. ed', 64304.0: 'RU: Completed general secondary educ. (10 grade by old system,11 grade by new), got attestat; no professional educ.', 64305.0: 'RU: Got primary professional educ.–grad. PTU,FSU,FSO, profes.-techn. lyceum; no attestat of compl. sec. gen. educ.(<2y', 64306.0: 'RU: Got primary professional educ.– grad. PTU, professional-techn. lyceum, with attestat of completed sec. educ.(1-3 y', 64307.0: 'RU: Got secondary professional education – graduated technikum, uchilishe, college (2-4 years of study)', 64308.0: 'RU: Got diploma of bachelor in college after 4 years of education on two-stage new education system', 64309.0: 'RU: Got diploma of master in college after additional 2 years of education on two-stage new education system', 64310.0: 'RU: Completed high education by 5-6-years system (diploma of specialist)', 64311.0: 'RU: Scientific degree (candidate, doctor of sciences)', 68801.0: ' RS: No education (under 3rd grade)', 68802.0: ' RS: Primary education lower cycle (4th – 7th grade)', 68803.0: ' RS: Primary education upper cycle (8th grade)', 68804.0: ' RS: Secondary vocational 3 yrs', 68805.0: ' RS: Secondary vocational 4 yrs', 68806.0: ' RS: Secondary general (grammar schools)', 68807.0: ' RS: 1-2 years vocational training', 68808.0: ' RS: Higher schools', 68809.0: ' RS: University: Graduate studies', 68810.0: ' RS: Postgraduate studies: Specialist studies', 68811.0: ' RS: Postgraduate studies: Magister studies (outdated)', 68812.0: ' RS: Postgraduate studies: Master studies', 68813.0: ' RS: PhD studies/ Doctor’s Degree', 70301.0: 'SK: Not completed first stage of elementary school (not completed primary level of education)', 70302.0: 'SK: Not completed second stage of elementary school (not completed lower secondary level of education)', 70303.0: 'SK: Completed lower secondary educ.(completed 8/9 y. of elementary school or courses to complete lower secondary educ.)', 70304.0: ' SK: Practical (girl) school, two-years training programmes, requalification courses without vocational certificate', 70305.0: 'SK: secondary vocational school or sec. voc. training institution or sec. voc. school without leaving exam (no maturita)', 70306.0: 'SK: Secondary vocational school with leaving exam (with maturita), secondary vocat. training institution (with maturita)', 70307.0: 'SK: Eight year grammar school - 4 year grammar school', 70308.0: 'SK: Complementary study', 70309.0: \"SK: Complementary 'postgraduate' pedagogical study\", 70310.0: \"SK: 'postgraduate' vocational study\", 70311.0: 'SK: Postgraduate specialised study with leaving certificate, Dance conservatory', 70312.0: 'SK: Secondary vocational schoool with leaving examination (maturita) - six year study', 70313.0: 'SK: Bachelors degree', 70314.0: \"SK: Master degree (engineering study, 'small' doctorate)\", 70315.0: 'SK: postgraduate pedagogical study, teaching certificate for university graduates', 70316.0: 'SK: PhD study, doctoral degree', 70501.0: 'SI: Without school education', 70502.0: 'SI: Incomplete primary education', 70503.0: 'SI: Primary education', 70504.0: 'SI: Lower or upper secondary vocational education', 70505.0: 'SI: Secondary vocational education', 70506.0: 'SI: Secondary general education', 70507.0: 'SI: Higher vocational education, post-secondary education (2 years)', 70508.0: 'SI: Higher vocational education - 1. Bologna level.', 70509.0: 'SI: Higher education university education', 70510.0: \"SI: Bologna master's degree\", 70511.0: 'SI: Specialization', 70512.0: \"SI: Master's degree\", 70513.0: 'SI: phD', 72401.0: 'ES: No studies', 72402.0: 'ES: Not completed primary studies', 72403.0: 'ES: Old Primary School (Before 1970)', 72404.0: 'ES: Up to the 5th course of EGB (Basic General Education). From 70s to 90s', 72405.0: 'ES: Up to the 6th course of Primary School', 72406.0: 'ES: Primary School in Music and Dance', 72407.0: 'ES: Elementary High School (Before 1970)', 72408.0: 'ES: Up to the 8th course of EGB (Basic General Education). From 70s to 90s', 72409.0: 'ES: Compulsory High School', 72410.0: 'ES: High School (From 70s to 90s)', 72411.0: 'ES: Pre-University Studies (before 90s)', 72412.0: 'ES: Not compulsory High School', 72413.0: 'ES: Vocational training (initiation)', 72414.0: 'ES: Vocational training (initiation) (old Law)', 72415.0: 'ES: Vocational training (first grade) (old Law)', 72416.0: 'ES: Vocational training (first grade)', 72417.0: 'ES: Vocational training (medium grade, technical in various professions such as administrative or mechanic )', 72418.0: 'ES: Vocational training (medium grade, arts and design)', 72419.0: 'ES: Vocational training (medium grade, music and dance)', 72420.0: 'ES: Vocational training (high grade, industrial) (old Law)', 72421.0: 'ES: Vocational training (high grade, general) (old Law)', 72422.0: 'ES: Vocational training (high grade, general)', 72423.0: 'ES: Vocational training (high grade in arts)', 72424.0: 'ES: Medium Tertiary studies (nursery, school teacher, social worker)', 72425.0: 'ES: Medium Tertiary studies ( building engineer, industrial or business expert)', 72426.0: 'ES: Long tertiary studies', 72427.0: 'ES: Phd', 72428.0: 'ES: Other (specify)', 75201.0: ' SE: not completed ISCED level 1', 75202.0: ' SE: ISCED 1, completed primary education', 75203.0: ' SE: Qualification from general ISCED 2A programmes, access to ISCED 3A general or all 3', 75204.0: ' SE: Old version of vocational high school', 75205.0: ' SE: Old and current version of high school education that gives access to higher education', 75206.0: ' SE: Old version of mainly vocational high school with limited access to higher education', 75207.0: ' SE: Vocational high school', 75208.0: ' SE: Technical high school, formerly 4 years at high school, currently 3 years at high school and 4th year at university', 75209.0: ' SE: Degree from one year of studies at university college.', 75210.0: ' SE: Vocational degree, qualification obtained after high school graduation, from vocational training institutes', 75211.0: ' SE: Vocational degree, obtained at university or university college, e.g. old professional nursing programmes', 75212.0: ' SE: Vocational degree, obtained after high school graduation, longer programme 2-3 years from vocational training insti', 75213.0: \" SE: Bachelor's degree or professional degree from a university college\", 75214.0: \" SE: Bachelor's degree or professional degree from a university\", 75215.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75216.0: ' SE: Masters degree from university college', 75217.0: ' SE: One year masters degree or old one semester master degree, equivalent of at least 4 years or more of studies at uni', 75218.0: ' SE: Masters degree from university', 75219.0: ' SE: Research degree, licantiate degree, a sort of half-way doctoral degree, old degree that is not often used', 75220.0: ' SE: Research degree, phd', 75601.0: 'CH: Incompleted primary school', 75602.0: 'CH: Primary school', 75603.0: 'CH: Secondary education (first stage)', 75604.0: 'CH: Additional year of secondary education, preparation for vocational training', 75605.0: 'CH: General training school (2-3 years)', 75606.0: 'CH: Baccalaureate preparing for university', 75607.0: 'CH: Baccalaureate for adults or apprenticeship after Baccalaureate', 75608.0: 'CH: Diploma for teaching in primary school or preprimary school', 75609.0: 'CH: Vocational baccalaureate', 75610.0: 'CH: Vocational baccalaureate for adults', 75611.0: 'CH: Elementary vocational training (enterprise and school, 1-2 year)', 75612.0: 'CH: Apprenticeship (vocational training, dual system, 3-4 years)', 75613.0: 'CH: Second vocational training (or apprenticeship as second education)', 75614.0: 'CH: Advanced vocational qualification (specialization exam, federal certif. or dipl. of advanced vocational training)', 75615.0: 'CH: Higher vocational training (high school diploma - technical, administration, health, social work, applied arts)', 75616.0: 'CH:Higher vocational training (diploma of some specific high schools withrecognition of tertiary level)', 75617.0: 'CH: University of applied science and pedagogical university (Bachelor)', 75618.0: 'CH: University of applied science and pedagogical university (Master)', 75619.0: 'CH: University diploma (intermediary level)', 75620.0: 'CH: University diploma and post-graduate (including technical) (Bachelor and short university degree)', 75621.0: 'CH: University diploma and post-graduate (including technical) (degree requiring more than 4 years)', 75622.0: 'CH: University diploma and post-graduate (including technical) (Master)', 75623.0: 'CH: Doctoral degree', 75624.0: 'CH: other', 80400.0: ' UA: Incomplete primary secondary education (less than 4 classes)', 80401.0: ' UA: Primary secondary education (1- 3(4) classes)', 80402.0: ' UA: Basic secondary education (certificate for 8(9) class)', 80403.0: ' UA: Technical-vocational education based on basic secondary education (no certificate of complete secondary education)', 80404.0: ' UA: Technical-vocational education based on of basic general secondary (certificate of general secondary education and', 80405.0: ' UA: Complete secondary education (certificate of general secondary education of 10(11) classes)', 80406.0: ' UA: Additional training training on the basis of general secondary education (vocational and general educational course', 80407.0: ' UA: Technical-vocational education on the basis of general secondary education', 80408.0: ' UA: Professional pre-higher education (diploma of junior specialist)', 80409.0: \" UA: Basic higher education (bachelor's degree)\", 80410.0: ' UA: Full higher education (specialist)', 80411.0: ' UA: Full higher education (Master or equivalent)', 80412.0: ' UA: Academic degree (candidate, doctor, PhD)', 80701.0: 'MK: Without education', 80702.0: 'MK: Completed primary education (4 years of primary school)', 80703.0: 'MK: Completed primary and lower secondary education', 80704.0: 'MK: Completed upper secondary education, vocational training - 2 years', 80705.0: 'MK: Completed upper secondary education, vocational training - 3 years', 80706.0: 'MK: Completed upper secondary education, vocational training - 4 years', 80707.0: 'MK: Completed upper secondary education, general (high school) - 4 years', 80708.0: 'MK: Completed further education - short cycle university education - 2 years', 80709.0: 'MK: Bachelor degree - 3 years', 80710.0: 'MK: Bachelor degree - 4 years', 80711.0: 'MK: Completed postgraduate studies, specialist studies - 1 year', 80712.0: 'MK: Completed postgraduate studies, specialist studies - 2 years', 80713.0: 'MK: Completed postgraduate studies, master studies - 1 year', 80714.0: 'MK: Completed postgraduate studies, master studies - 2 years', 80715.0: 'MK: Doctoral degree, completed doctorate - 5 years', 80716.0: 'MK: Doctoral degree, completed doctorate (PhD studies) - 3 years', 80788.0: 'MK: don’t know (spontaneous)', 80799.0: 'MK: no answer (spontaneous)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True52602516
v263_cs_DE1429v263_cs_DE1numericDE COUNTRY-SPECIFIC: educational level mother (Q100), SCHOOL{-10.0: 'multiple answers Mail', 27601.0: 'Primary school not completed', 27602.0: 'Primary school completed, secondary school not (yet) completed', 27603.0: 'Lower secondary schools (no access to general) or polytechnic secondary school (8th or 9th grade)', 27604.0: 'Lower secondary schools (access to general) or polytechnic secondary school (10th grade)', 27605.0: 'University of Applied Science entrance qualification (specialised vocational high schools etc.)', 27606.0: 'Grammar school (University entrance qualification)', 27607.0: 'Other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True19187
v263_cs_DE2430v263_cs_DE2numericDE COUNTRY-SPECIFIC: educational level mother (Q100), STUDIES{-10.0: 'multiple answers Mail', 27601.0: 'No degree', 27602.0: 'Preliminary examination, preliminary diploma', 27603.0: 'College of public administration or University of Applied Sciences (diploma)', 27604.0: 'Vocational academy (diploma)', 27605.0: 'College of public administration or University of Applied Sciences (Bachelor)', 27606.0: 'Vocational academy (Bachelor)', 27607.0: 'University (Bachelor)', 27608.0: 'College of public administration or University of Applied Sciences (Master)', 27609.0: 'Vocational academy (Master)', 27610.0: 'University (diploma, Magister, state examaniation)', 27611.0: 'University (Master or postgraduate studies)', 27612.0: 'Doctoral studies', 27613.0: 'other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True186513
v263_cs_DE3431v263_cs_DE3numericDE COUNTRY-SPECIFIC: educational level mother (Q100), VOCATIONAL{-10.0: 'multiple answers Mail', 27601.0: 'No degree', 27602.0: 'Pre-vocational training, qualification of short health sector programmes', 27603.0: 'Vocational training with diploma, but no Dual System (second cycle)', 27604.0: 'Medical assistant, nurse (qualification of health sector schools (2 and 3 years)', 27605.0: 'Qualification of civil servants for the medium level', 27606.0: 'Qualification in the Dual System (second cycle), industrial or agricultural sector', 27607.0: 'Qualification in the Dual System (second cycle), sales sector', 27608.0: 'Qualification of a vocational full-time school', 27609.0: 'Occupational qualification (second cycle) for students with occupational qualification or with university entrace qualif', 27610.0: \"Master craftsmen's or Technician's qualification (or equal)\", 27611.0: 'other, please specify: (write in)'}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True178111
v263_cs_GB1432v263_cs_GB1numericGB COUNTRY-SPECIFIC:educational level mother: Up to 2 or more A-levels or equivalent (Q100a){82601.0: '2 or more A-levels or equivalent', 82602.0: ' GNVQ or GSVQ Intermediate', 82603.0: ' Vocational GCSE or equivalent', 82604.0: ' 5 or more GCSEs A*-C or equivalent', 82605.0: ' 1-4 GCSEs A*-C or equivalent', 82606.0: ' Skills for life', 82607.0: ' None of these'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True15047
v263_cs_GB2433v263_cs_GB2numericGB COUNTRY-SPECIFIC:educational level mother: Up to Ph.D or equivalent (Q100a){82601.0: ' Ph.D, D.Phil or equivalent', 82602.0: ' Masters Degree, M.Phil, Post-Graduate Diplomas and Certificates', 82603.0: ' 5 year University/CNAA first Degree (MB, BDS, BV etc)', 82604.0: ' 3-4 year University/CNAA first Degree (BA, BSc., BEd., BEng. Etc)', 82605.0: ' Nursing certificate, Teacher training, HE Diploma, Edexcel/BTEC/BEC/TEC/HND, City and Guilds, NVQ/SVQ - Leve', 82606.0: ' Foundation Degree (FdA, FdSc etc)', 82607.0: ' Edexcel/BTEC/BEC/TEC - Higher National Certificate (HNC) or equivalent', 82608.0: ' HE Access', 82609.0: ' Vocational A-level (AVCE), GCE Applied A-level, NVQ/SVQ Level 3, GNVQ/GSVQ Advanced, Edexcel/BTEC/BEC/TEC (G', 82610.0: ' (Modern) Apprenticeship, Advanced (Modern) Apprenticeship, SVQ/NVQ/Key Skills Level 1 and 2, City and Guild', 82611.0: ' None of these', 82612.0: ' Any other qualifications (specify)'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True150811
v264434v264numericat age 14, was father employed (Q101){1.0: 'yes employed', 2.0: 'yes self employed', 3.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True550493
v265435v265numericat age 14, was mother employed (Q102){1.0: 'yes employed', 2.0: 'yes self employed', 3.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True569423
v266436v266numericat age 14, occupational group of your parent (main earner) (Q103){1.0: 'professional and technical (for example: doctor, teacher, engineer, artist, accountant, nurse)', 2.0: 'higher administrative (for example: banker, executive in big business, high government official, union official)', 3.0: 'clerical (for example: secretary, clerk, office manager, civil servant, bookkeeper)', 4.0: 'sales (for example: sales manager, shop owner, shop assistant, insurance agent, buyer)', 5.0: 'service (for example: restaurant owner, police officer, waitress, barber, caretaker)', 6.0: 'skilled worker (for example: foreman, motor mechanic, printer, seamstress, tool and die maker, electrician)', 7.0: 'semi-skilled worker (for example: bricklayer, bus driver, cannery worker, carpenter, sheet metal worker, baker)', 8.0: 'unskilled worker (for example: laborer, porter, unskilled factory worker, cleaner)', 9.0: 'farm worker (for example: farm laborer, tractor driver)', 10.0: 'farm proprietor, farm manager'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 66.0: 'does not apply to me (spontaneous)'}True5534410
v267437v267numericat age 14, mother liked to read books (Q104A){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True563984
v268438v268numericat age 14, discussed politics with mother (Q104B){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True571424
v269439v269numericat age 14, mother liked to follow the news (Q104C){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True563124
v270440v270numericat age 14, parent(s) had problems making ends meet (Q104D){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True569774
v271441v271numericat age 14, father liked to read books (Q104E){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True543764
v272442v272numericat age 14, discussed politics with father (Q104F){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True552194
v273443v273numericat age 14, father liked to follow the news (Q104G){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True546354
v274444v274numericat age 14, parent(s) had problems replacing broken things (Q104H){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True557924
v275b_N2445v275b_N2nominalregion where interview was conducted: NUTS-2 code (Q105){'AL01': 'AL: Albania - Northern Albania', 'AL02': 'AL: Albania - Central Albania', 'AL03': 'AL: Albania - Southern Albania', 'ALZZ': 'AL: Extra-region - Extra-region', 'AM01': 'AM: Armenia - Yerevan', 'AM02': 'AM: Armenia - II Region', 'AM03': 'AM: Armenia - III Region', 'AM04': 'AM: Armenia - IV Region', 'AMZZ': 'AM: Extra-region - Extra-region', 'AT11': ' AT: OSTÖSTERREICH - Burgenland', 'AT12': ' AT: OSTÖSTERREICH - Niederösterreich', 'AT13': ' AT: OSTÖSTERREICH - Wien', 'AT21': ' AT: SÜDÖSTERREICH - Kärnten', 'AT22': ' AT: SÜDÖSTERREICH - Steiermark', 'AT31': ' AT: WESTÖSTERREICH - Oberösterreich', 'AT32': ' AT: WESTÖSTERREICH - Salzburg', 'AT33': ' AT: WESTÖSTERREICH - Tirol', 'AT34': ' AT: WESTÖSTERREICH - Vorarlberg', 'ATZZ': ' AT: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'AZ-ABS': ' AZ: Absheron', 'AZ-AGA': ' AZ: Agstafa', 'AZ-AGC': ' AZ: Agdzhebedinsky', 'AZ-AGS': ' AZ: Agdash', 'AZ-AGU': ' AZ: Agsu', 'AZ-AST': ' AZ: Astara', 'AZ-BA': ' AZ: Baku city', 'AZ-BAL': ' AZ: Belakansky', 'AZ-BAR': ' AZ: Barda', 'AZ-BEY': ' AZ: Beylagan', 'AZ-BIL': ' AZ: Bilasuvar', 'AZ-CAL': ' AZ: Jalilabad', 'AZ-DAS': ' AZ: Dashkesan', 'AZ-GA': ' AZ: Ganja city', 'AZ-GAD': ' AZ: Kedabegsky', 'AZ-GOR': ' AZ: Goranboy', 'AZ-GOY': ' AZ: Goychay', 'AZ-GYG': ' AZ: Gay-Gelsky', 'AZ-HAC': ' AZ: Hajikabul', 'AZ-IMI': ' AZ: Imishli', 'AZ-ISM': ' AZ: Ismaili', 'AZ-KUR': ' AZ: Kurdamir', 'AZ-LAN': ' AZ: Lankaran', 'AZ-LER': ' AZ: Lerik', 'AZ-MAS': ' AZ: Masalli', 'AZ-MI': ' AZ: Mingechaur city', 'AZ-NA': ' AZ: Naftalan city', 'AZ-NEF': ' AZ: Neftchala', 'AZ-OGU': ' AZ: Oguz', 'AZ-QAB': ' AZ: Gabala region', 'AZ-QAX': ' AZ: Gakh', 'AZ-QAZ': ' AZ: Gazakh', 'AZ-QBA': ' AZ: Gubinsky', 'AZ-QOB': ' AZ: Gobustan', 'AZ-QUS': ' AZ: Gusar', 'AZ-SAB': ' AZ: Sabirabad', 'AZ-SAK': ' AZ: Sheki', 'AZ-SAL': ' AZ: Salyan', 'AZ-SAT': ' AZ: Saatly', 'AZ-SBN': ' AZ: Shabran', 'AZ-SIY': ' AZ: Siyazan', 'AZ-SKR': ' AZ: Shamkir', 'AZ-SM': ' AZ: Sumgait city', 'AZ-SMI': ' AZ: Shemakha', 'AZ-SMX': ' AZ: Samukh', 'AZ-SR': ' AZ: Shirvan city', 'AZ-TOV': ' AZ: Tovuz', 'AZ-UCA': ' AZ: Ujar', 'AZ-XAC': ' AZ: Khachmaz', 'AZ-XIZ': ' AZ: Khyzy', 'AZ-YAR': ' AZ: Yardimli', 'AZ-YEV': ' AZ: Yevlakh', 'AZ-ZAQ': ' AZ: Zakatala', 'AZ-ZAR': ' AZ: Zardob', 'BABIH': 'BA: Bosnia and Herzegovina - Federation of Bosnia i Herzegovina', 'BABRC': 'BA: Bosnia and Herzegovina - Brčko DISTRICT', 'BASRP': 'BA: Bosnia and Herzegovina - Republica Srpska', 'BG31': ' BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Severozapaden', 'BG32': ' BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Severen tsentralen', 'BG33': ' BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Severoiztochen', 'BG34': ' BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Yugoiztochen', 'BG41': ' BG: YUGOZAPADNA I YUZHNA TSENTRALNA BULGARIA - Yugozapaden', 'BG42': ' BG: YUGOZAPADNA I YUZHNA TSENTRALNA BULGARIA - Yuzhen tsentralen', 'BGZZ': ' BG: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'BY01': 'BY: Belarus - Belarus - Brest region', 'BY02': 'BY: Belarus - Belarus - Vitebsk region', 'BY03': 'BY: Belarus - Belarus - Gomel region', 'BY04': 'BY: Belarus - Belarus - Grodno region', 'BY05': 'BY: Belarus - Belarus - Minsk (capital city)', 'BY06': 'BY: Belarus - Belarus - Minsk region', 'BY07': 'BY: Belarus - Belarus - Mogilev region', 'BYZZ': 'BY: Extra-regio - Extra-regio - Extra-regio', 'CH01': 'CH: Switzerland - Region Lemanique', 'CH02': 'CH: Switzerland - Espace Mittelland', 'CH03': 'CH: Switzerland - Nordwestschweiz', 'CH04': 'CH: Switzerland - Zürich', 'CH05': 'CH: Switzerland - Ostschweiz', 'CH06': 'CH: Switzerland - Zentralschweiz', 'CH07': 'CH: Switzerland - Ticino', 'CHZZ': 'CH: Extra-region- Extra-region', 'CZ01': ' CZ: ČESKÁ REPUBLIKA - Praha', 'CZ02': ' CZ: ČESKÁ REPUBLIKA - Střední Čechy', 'CZ03': ' CZ: ČESKÁ REPUBLIKA - Jihozápad', 'CZ04': ' CZ: ČESKÁ REPUBLIKA - Severozápad', 'CZ05': ' CZ: ČESKÁ REPUBLIKA - Severovýchod', 'CZ06': ' CZ: ČESKÁ REPUBLIKA - Jihovýchod', 'CZ07': ' CZ: ČESKÁ REPUBLIKA - Střední Morava', 'CZ08': ' CZ: ČESKÁ REPUBLIKA - Moravskoslezsko', 'CZZZ': ' CZ: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'DE11': ' DE: BADEN-WÜRTTEMBERG - Stuttgart', 'DE12': ' DE: BADEN-WÜRTTEMBERG - Karlsruhe', 'DE13': ' DE: BADEN-WÜRTTEMBERG - Freiburg', 'DE14': ' DE: BADEN-WÜRTTEMBERG - Tübingen', 'DE21': ' DE: BAYERN - Oberbayern', 'DE22': ' DE: BAYERN - Niederbayern', 'DE23': ' DE: BAYERN - Oberpfalz', 'DE24': ' DE: BAYERN - Oberfranken', 'DE25': ' DE: BAYERN - Mittelfranken', 'DE26': ' DE: BAYERN - Unterfranken', 'DE27': ' DE: BAYERN - Schwaben', 'DE30': ' DE: BERLIN - Berlin', 'DE40': ' DE: BRANDENBURG - Brandenburg', 'DE50': ' DE: BREMEN - Brandenburg', 'DE60': ' DE: HAMBURG - Hamburg', 'DE71': ' DE: HESSEN - Darmstadt', 'DE72': ' DE: HESSEN - Gießen', 'DE73': ' DE: HESSEN - Kassel', 'DE80': ' DE: MECKLENBURG-VORPOMMERN - Mecklenburg-Vorpommern', 'DE91': ' DE: NIEDERSACHSEN - Braunschweig', 'DE92': ' DE: NIEDERSACHSEN - Hannover', 'DE93': ' DE: NIEDERSACHSEN - Lüneburg', 'DE94': ' DE: NIEDERSACHSEN - Weser-Ems', 'DEA1': ' DE: NORDRHEIN-WESTFALEN - Düsseldorf', 'DEA2': ' DE: NORDRHEIN-WESTFALEN - Köln', 'DEA3': ' DE: NORDRHEIN-WESTFALEN - Münster', 'DEA4': ' DE: NORDRHEIN-WESTFALEN - Detmold', 'DEA5': ' DE: NORDRHEIN-WESTFALEN - Arnsberg', 'DEB1': ' DE: RHEINLAND-PFALZ - Koblenz', 'DEB2': ' DE: RHEINLAND-PFALZ - Trier', 'DEB3': ' DE: RHEINLAND-PFALZ - Rheinhessen-Pfalz', 'DEC0': ' DE: SAARLAND - Saarland', 'DED2': ' DE: SACHSEN - Dresden', 'DED4': ' DE: SACHSEN - Chemnitz', 'DED5': ' DE: SACHSEN - Leipzig', 'DEE0': ' DE: SACHSEN-ANHALT - Sachsen-Anhalt', 'DEF0': ' DE: SCHLESWIG-HOLSTEIN - Schleswig-Holstein', 'DEG0': ' DE: THÜRINGEN - Thüringen', 'DEZZ': ' DE: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'DK01': ' DK: DANMARK - Hovedstaden', 'DK02': ' DK: DANMARK - Sjælland', 'DK03': ' DK: DANMARK - Syddanmark', 'DK04': ' DK: DANMARK - Midtjylland', 'DK05': ' DK: DANMARK - Nordjylland', 'DKZZ': ' DK: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'EE00': ' EE: EESTI - Esti', 'EEZZ': ' EE: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'EL30': 'GR: ATTICA (ATTIKI) - Attica', 'EL41': 'GR: NISSIA AIGAIOU-KRITI - North Aegean (Previous Voreio Aigaio)', 'EL42': 'GR: NISSIA AIGAIOU-KRITI - South Aegean (Previous Notio Aigaio)', 'EL43': 'GR: NISSIA AIGAIOU-KRITI - Crete (Previous Kriti)', 'EL51': 'GR: VOREIA ELLADA - Eastern Macedonia And Thrace', 'EL52': 'GR: VOREIA ELLADA - Central Macedonia', 'EL53': 'GR: VOREIA ELLADA - Western Macedonia', 'EL54': 'GR: VOREIA ELLADA - Epirus', 'EL61': 'GR: KENTRIKI ELLADA - Thessaly', 'EL62': 'GR: KENTRIKI ELLADA - Ionian Islands', 'EL63': 'GR: KENTRIKI ELLADA - Western Greece', 'EL64': 'GR: KENTRIKI ELLADA - Central Greece (Previous Sterea Ellada)', 'EL65': 'GR: KENTRIKI ELLADA - Peloponnese', 'ES11': ' ES: NOROESTE - Galicia', 'ES12': ' ES: NOROESTE - Principado de Asturias', 'ES13': ' ES: NOROESTE - Cantabria', 'ES21': ' ES: NORESTE - País Vasco', 'ES22': ' ES: NORESTE - Comunidad Foral de Navarra', 'ES23': ' ES: NORESTE - La Rioja', 'ES24': ' ES: NORESTE - Aragón', 'ES30': ' ES: COMUNIDAD DE MADRID - Comunidad de Madrid', 'ES41': ' ES: CENTRO (ES) - Castilla y León', 'ES42': ' ES: CENTRO (ES) - Castilla-La Mancha', 'ES43': ' ES: CENTRO (ES) - Extremadura', 'ES51': ' ES: ESTE - Cataluña', 'ES52': ' ES: ESTE - Comunidad Valenciana', 'ES53': ' ES: ESTE - Illes Balears', 'ES61': ' ES: SUR - Andalucía', 'ES62': ' ES: SUR - Región de Murcia', 'ES63': ' ES: SUR - Ciudad Autónoma de Ceuta', 'ES64': ' ES: SUR - Ciudad Autónoma de Melilla', 'ES70': ' ES: CANARIAS - Canarias', 'ESZZ': ' ES: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'FI19': ' FI: MANNER-SUOMI - Länsi-Suomi', 'FI1B': ' FI: MANNER-SUOMI - Helsinki-Uusimaa', 'FI1C': ' FI: MANNER-SUOMI - Etelä-Suomi', 'FI1D': ' FI: MANNER-SUOMI - Pohjois- ja Itä-Suomi', 'FI20': ' FI: ÅLAND - ÅLAND', 'FIZZ': ' FI: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'FR10': ' FR: ÎLE-DE-FRANCE - Île-de-France', 'FRB0': ' FR: CENTRE-VAL DE LOIRE - Centre-Val de Loire', 'FRC1': ' FR: BOURGOGNE-FRANCHE-COMTÉ - Bourgogne', 'FRC2': ' FR: BOURGOGNE-FRANCHE-COMTÉ - Franche-Comté', 'FRD1': ' FR: NORMANDIE - Basse-Normandie', 'FRD2': ' FR: NORMANDIE - Haute-Normandie', 'FRE1': ' FR: HAUTS-DE-FRANCE - Nord-Pas-de-Calais', 'FRE2': ' FR: HAUTS-DE-FRANCE - Picardie', 'FRF1': ' FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE - Alsace', 'FRF2': ' FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE - Champagne-Ardenne', 'FRF3': ' FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE - Lorraine', 'FRG0': ' FR: PAYS-DE-LA-LOIRE - Pays-de-la-Loire', 'FRH0': ' FR: BRETAGNE - Bretagne', 'FRI1': ' FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES - Aquitaine', 'FRI2': ' FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES - Limousin', 'FRI3': ' FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES - Poitou-Charentes', 'FRJ1': ' FR: LANGUEDOC-ROUSSILLON-MIDI-PYRÉNÉES - Languedoc-Roussillon', 'FRJ2': ' FR: LANGUEDOC-ROUSSILLON-MIDI-PYRÉNÉES - Midi-Pyrénées', 'FRK1': ' FR: AUVERGNE-RHÔNE-ALPES - Auvergne', 'FRK2': ' FR: AUVERGNE-RHÔNE-ALPES - Rhône-Alpes', 'FRL0': ' FR: PROVENCE-ALPES-CÔTE D’AZUR - Provence-Alpes-Côte d’Azur', 'FRM0': ' FR: CORSE - Corse', 'FRY1': ' FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Guadeloupe', 'FRY2': ' FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Martinique', 'FRY3': ' FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Guyane', 'FRY4': ' FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - La Réunion', 'FRY5': ' FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Mayotte', 'FRZZ': ' FR: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'GE01': 'GE: Georgia - Capital', 'GE02': 'GE: Georgia - Western Georgia', 'GE03': 'GE: Georgia - Eastern Georgia', 'GEZZ': 'GE: Extra-regio - Extra-regio', 'GRZZ': 'GR: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'HR03': ' HR: HRVATSKA - Jadranska Hrvatska', 'HR04': ' HR: HRVATSKA - Kontinentalna Hrvatska', 'HRZZ': ' HR: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'HU11': ' HU: KÖZÉP-MAGYARORSZÁG - Budapest', 'HU12': ' HU: KÖZÉP-MAGYARORSZÁG - Pest', 'HU21': ' HU: DUNÁNTÚL - Közép-Dunántúl', 'HU22': ' HU: DUNÁNTÚL - Nyugat-Dunántúl', 'HU23': ' HU: DUNÁNTÚL - Dél-Dunántúl', 'HU31': ' HU: ALFÖLD ÉS ÉSZAK - Észak-Magyarország', 'HU32': ' HU: ALFÖLD ÉS ÉSZAK - Észak-Alföld', 'HU33': ' HU: ALFÖLD ÉS ÉSZAK - Dél-Alföld', 'HUZZ': ' HU: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'IS00': 'IS: Ísland - Ísland', 'ISZZ': 'IS: Extra-regio - Extra-regio', 'ITC1': ' IT: NORD-OVEST - Piemonte', 'ITC2': ' IT: NORD-OVEST - Valle d’Aosta/Vallée d’Aoste', 'ITC3': ' IT: NORD-OVEST - Liguria', 'ITC4': ' IT: NORD-OVEST - Lombardia', 'ITF1': ' IT: SUD - Abruzzo', 'ITF2': ' IT: SUD - Molise', 'ITF3': ' IT: SUD - Campania', 'ITF4': ' IT: SUD - Puglia', 'ITF5': ' IT: SUD - Basilicata', 'ITF6': ' IT: SUD - Calabria', 'ITG1': ' IT: ISOLE - Sicilia', 'ITG2': ' IT: ISOLE - Sardegna', 'ITH1': ' IT: NORD-EST - Provincia Autonoma di Bolzano/Bozen\\xa0', 'ITH2': ' IT: NORD-EST - Provincia Autonoma di Trento', 'ITH3': ' IT: NORD-EST - Veneto', 'ITH4': ' IT: NORD-EST - Friuli-Venezia Giulia', 'ITH5': ' IT: NORD-EST - Emilia-Romagna', 'ITI1': ' IT: CENTRO (IT) - Toscana', 'ITI2': ' IT: CENTRO (IT) - Umbria', 'ITI3': ' IT: CENTRO (IT) - Marche', 'ITI4': ' IT: CENTRO (IT) - Lazio', 'ITZZ': ' IT: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'LT01': ' LT: LIETUVA - Sostinės regionas', 'LT02': ' LT: LIETUVA - Vidurio ir vakarų Lietuvos regionas', 'LTZZ': ' LT: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'LV00': ' LV: LATVIJA - Latvija', 'LVZZ': ' LV: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'ME00': 'ME:Montenegro - Montenegro', 'MK00': 'MK: MACEDONIA - Macedonia', 'MKZZ': 'MK: MACEDONIA - extra-regio', 'NL11': ' NL: NOORD-NEDERLAND - Groningen', 'NL12': ' NL: NOORD-NEDERLAND - Friesland (NL)', 'NL13': ' NL: NOORD-NEDERLAND - Drenthe', 'NL21': ' NL: OOST-NEDERLAND - Overijssel', 'NL22': ' NL: OOST-NEDERLAND - Gelderland', 'NL23': ' NL: OOST-NEDERLAND - Flevoland', 'NL31': ' NL: WEST-NEDERLAND - Utrecht', 'NL32': ' NL: WEST-NEDERLAND - Noord-Holland', 'NL33': ' NL: WEST-NEDERLAND - Zuid-Holland', 'NL34': ' NL: WEST-NEDERLAND - Zeeland', 'NL41': ' NL: ZUID-NEDERLAND - Noord-Brabant', 'NL42': ' NL: ZUID-NEDERLAND - Limburg (NL)', 'NLZZ': ' NL: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'NO01': 'NO: Norway - Oslo og Akershus', 'NO02': 'NO: Norway - Hedmark og Oppland', 'NO03': 'NO: Norway - Sør-Østlandet', 'NO04': 'NO: Norway - Agder og Rogaland', 'NO05': 'NO: Norway - Vestlandet', 'NO06': 'NO: Norway - Trøndelag', 'NO07': 'NO: Norway - Nord- Norge', 'NOZZ': 'NO: Extra-regio - Extra-regio', 'PL21': ' PL: MAKROREGION POŁUDNIOWY - Małopolskie', 'PL22': ' PL: MAKROREGION POŁUDNIOWY - Śląskie', 'PL41': ' PL: MAKROREGION PÓŁNOCNO-ZACHODNI - Wielkopolskie', 'PL42': ' PL: MAKROREGION PÓŁNOCNO-ZACHODNI - Zachodniopomorskie', 'PL43': ' PL: MAKROREGION PÓŁNOCNO-ZACHODNI - Lubuskie', 'PL51': ' PL: MAKROREGION POŁUDNIOWO-ZACHODNI - Dolnośląskie', 'PL52': ' PL: MAKROREGION POŁUDNIOWO-ZACHODNI - Opolskie', 'PL61': ' PL: MAKROREGION PÓŁNOCNY - Kujawsko-pomorskie', 'PL62': ' PL: MAKROREGION PÓŁNOCNY - Warmińsko-mazurskie', 'PL63': ' PL: MAKROREGION PÓŁNOCNY - Pomorskie', 'PL71': ' PL: MAKROREGION CENTRALNY - Łódzkie', 'PL72': ' PL: MAKROREGION CENTRALNY - Świętokrzyskie', 'PL81': ' PL: MAKROREGION WSCHODNI - Lubelskie', 'PL82': ' PL: MAKROREGION WSCHODNI - Podkarpackie', 'PL84': ' PL: MAKROREGION WSCHODNI - Podlaskie', 'PL91': ' PL: MAKROREGION WOJEWÓDZTWO MAZOWIECKIE - Warszawski stołeczny', 'PL92': ' PL: MAKROREGION WOJEWÓDZTWO MAZOWIECKIE - Mazowiecki regionalny', 'PLZZ': ' PL: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'PT11': 'PT: Continente - Norte', 'PT15': 'PT: Continente - Algarve', 'PT16': 'PT: Continente - Centro', 'PT17': 'PT: Continente - Área Metropolitana de Lisboa', 'PT18': 'PT: Continente - Alentejo', 'PT20': 'PT: Região Autónoma dos Açores - Região Autónoma dos Açores', 'PT30': 'PT: Região Autónoma da Madeira - Região Autónoma da Madeira', 'PTZZ': 'PT: Extra-regio - Extra-regio', 'RO11': ' RO: MACROREGIUNEA UNU - Nord-Vest', 'RO12': ' RO: MACROREGIUNEA UNU - Centru', 'RO21': ' RO: MACROREGIUNEA DOI - Nord-Est', 'RO22': ' RO: MACROREGIUNEA DOI - Sud-Est', 'RO31': ' RO: MACROREGIUNEA TREI - Sud-Muntenia', 'RO32': ' RO: MACROREGIUNEA TREI - București-Ilfov', 'RO41': ' RO: MACROREGIUNEA PATRU - Sud-Vest Oltenia', 'RO42': ' RO: MACROREGIUNEA PATRU - Vest', 'ROZZ': ' RO: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'RS11': 'RS: Sever - Grad Beograd', 'RS12': 'RS: Sever - Vojvodina', 'RS21': 'RS: Jug - Šumadija i zapadna Srbija', 'RS22': 'RS: Jug - Južna i istočna Srbija', 'RSZZ': 'RS: extra-regio - extra-regio', 'RU11': 'RU: Central Federal District - Central Federal District', 'RU21': 'RU: North West Federal District - North West Federal District', 'RU31': 'RU: South Federal District - South Federal District', 'RU41': 'RU: Privolzhsky Federal District - Privolzhsky Federal District', 'RU51': 'RU: Urals Federal District - Urals Federal District', 'RU61': 'RU: Siberian Federal District - Siberian Federal District', 'RU71': 'RU: Far East Federal District - Far East Federal District', 'RU81': 'RU: North Caucasian federal district - North Caucasian federal district', 'SE11': ' SE: ÖSTRA SVERIGE - Stockholm', 'SE12': ' SE: ÖSTRA SVERIGE - Östra Mellansverige', 'SE21': ' SE: SÖDRA SVERIGE - Småland med öarna', 'SE22': ' SE: SÖDRA SVERIGE - Sydsverige', 'SE23': ' SE: SÖDRA SVERIGE - Västsverige', 'SE31': ' SE: NORRA SVERIGE - Norra Mellansverige', 'SE32': ' SE: NORRA SVERIGE - Mellersta Norrland', 'SE33': ' SE: NORRA SVERIGE - Övre Norrland', 'SEZZ': ' SE: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'SI03': ' SI: SLOVENIJA - Vzhodna Slovenija', 'SI04': ' SI: SLOVENIJA - Zahodna Slovenija', 'SIZZ': ' SI: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'SK01': ' SK: SLOVENSKO - Bratislavský kraj', 'SK02': ' SK: SLOVENSKO - Západné Slovensko', 'SK03': ' SK: SLOVENSKO - Stredné Slovensko', 'SK04': ' SK: SLOVENSKO - Východné Slovensko', 'SKZZ': ' SK: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 'UA11': 'UA: WEST 1 - Volyn region', 'UA12': 'UA: WEST 1 - Zakarpattya region', 'UA13': 'UA: WEST 1 - Ivano-Frankivsk region', 'UA14': 'UA: WEST 1 - Lviv region', 'UA21': 'UA: WEST 2 - Rivne region', 'UA22': 'UA: WEST 2 - Ternopil region', 'UA23': 'UA: WEST 2 - Khmelnytsky region', 'UA24': 'UA: WEST 2 - Chernivtsi region', 'UA31': 'UA: THE CITY OF KYIV - The city of Kyiv', 'UA41': 'UA: SOUTH - Mykolaiv region', 'UA42': 'UA: SOUTH - Odesa region', 'UA43': 'UA: SOUTH - Kherson region', 'UA51': 'UA: NORTH - Zhytomyr region', 'UA52': 'UA: NORTH - Kyiv region', 'UA53': 'UA: NORTH - Chernihiv region', 'UA61': 'UA: EAST 1 - Dnipropetrovsk region', 'UA62': 'UA: EAST 1 - Sumy region', 'UA63': 'UA: EAST 1 - Kharkiv region', 'UA71': 'UA: EAST 2 - Donetsk region', 'UA72': 'UA: EAST 2 - Zaporizhya region', 'UA73': 'UA: EAST 2 - Luhansk region', 'UA81': 'UA: CENTER - Vinnytsia region', 'UA82': 'UA: CENTER - Kirovograd region', 'UA83': 'UA: CENTER - Poltava region', 'UA84': 'UA: CENTER - Cherkasy region', 'UKC1': ' UK - GB-GBN: North East (England) - Tees Valley and Durham', 'UKC2': ' UK - GB-GBN: North East (England) - Northumberland and Tyne and Wear', 'UKD1': ' UK - GB-GBN: North West (England) - Cumbria', 'UKD3': ' UK - GB-GBN: North West (England) - Greater Manchester', 'UKD4': ' UK - GB-GBN: North West (England) - Lancashire', 'UKD6': ' UK - GB-GBN: North West (England) - Cheshire', 'UKD7': ' UK - GB-GBN: North West (England) - Merseyside', 'UKE1': ' UK - GB-GBN: Yorkshire and the Humber - East Yorkshire and Northern Lincolnshire', 'UKE2': ' UK - GB-GBN: Yorkshire and the Humber - North Yorkshire', 'UKE3': ' UK - GB-GBN: Yorkshire and the Humber - South Yorkshire', 'UKE4': ' UK - GB-GBN: Yorkshire and the Humber - West Yorkshire', 'UKF1': ' UK - GB-GBN: East Midlands (England) - Derbyshire and Nottinghamshire', 'UKF2': ' UK - GB-GBN: East Midlands (England) - Leicestershire, Rutland and Northamptonshire', 'UKF3': ' UK - GB-GBN: East Midlands (England) - Lincolnshire', 'UKG1': ' UK - GB-GBN: West Midlands (England) - Herefordshire, Worcestershire and Warwickshire', 'UKG2': ' UK - GB-GBN: West Midlands (England) - Shropshire and Staffordshire', 'UKG3': ' UK - GB-GBN: West Midlands (England) - West Midlands', 'UKH1': ' UK - GB-GBN: East of England - East Anglia', 'UKH2': ' UK - GB-GBN: East of England - Bedfordshire and Hertfordshire', 'UKH3': ' UK - GB-GBN: East of England - Essex', 'UKI3': ' UK - GB-GBN: London - Inner London West', 'UKI4': ' UK - GB-GBN: London - Inner London East', 'UKI5': ' UK - GB-GBN: London - Outer London - East and North East', 'UKI6': ' UK - GB-GBN: London - Outer London - South', 'UKI7': ' UK - GB-GBN: London - Outer London - West and North West', 'UKJ1': ' UK - GB-GBN: South East (England) - Berkshire, Buckinghamshire and Oxfordshire', 'UKJ2': ' UK - GB-GBN: South East (England) - Surrey, East and West Sussex', 'UKJ3': ' UK - GB-GBN: South East (England) - Hampshire and Isle of Wight', 'UKJ4': ' UK - GB-GBN: South East (England) - Kent', 'UKK1': ' UK - GB-GBN: South West (England) - Gloucestershire, Wiltshire and Bristol/Bath area', 'UKK2': ' UK - GB-GBN: South West (England) - Dorset and Somerset', 'UKK3': ' UK - GB-GBN: South West (England) - Cornwall and Isles of Scilly', 'UKK4': ' UK - GB-GBN: South West (England) - Devon', 'UKL1': ' UK - GB-GBN: Wales - West Wales and The Valleys', 'UKL2': ' UK - GB-GBN: Wales - East Wales', 'UKM5': ' UK - GB-GBN: Scotland - North Eastern Scotland', 'UKM6': ' UK - GB-GBN: Scotland - Highlands and Islands', 'UKM7': ' UK - GB-GBN: Scotland - Eastern Scotland', 'UKM8': ' UK - GB-GBN: Scotland - West Central Scotland', 'UKM9': ' UK - GB-GBN: Scotland - Southern Scotland', 'UKN0': ' UK - GB-NIR: Northern Ireland - Northern Ireland', 'UKZZ': ' UK - EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2'}{'-1': \"don't know/no answer\", '-4': 'item not included', '-5': 'other missing'}True57248312
v275b_N1446v275b_N1nominalregion where interview was conducted: NUTS-1 code (Q105){' GRZ': 'GR: EXTRA-REGIO NUTS 1', 'AL0': 'AL: Albania', 'ALZ': 'AL: Extra-region', 'AM0': 'AM: Armenia', 'AMZ': 'AM: Extra-region', 'AT1': ' AT: OSTÖSTERREICH', 'AT2': ' AT: SÜDÖSTERREICH', 'AT3': ' AT: WESTÖSTERREICH', 'ATZ': ' AT: EXTRA-REGIO NUTS 1', 'AZ1': 'AZ: BAKU CITY', 'AZ2': 'AZ: APSHERON', 'AZ3': 'AZ:KUBA-KHACHMAZ', 'AZ4': 'AZ: ARAN', 'AZ5': 'AZ: LENKARAN', 'AZ6': 'AZ:MOUNTAINOUS SHIRVAN', 'AZ7': 'AZ: GANJA-KAZAKH', 'AZ8': 'AZ: SHEKI-ZAKATALA', 'BA': 'BA: Bosnia and Herzegovina', 'BG0': ' BG: BULGARIA', 'BG3': ' BG: SEVERNA I YUGOIZTOCHNA BULGARIA', 'BG4': ' BG: YUGOZAPADNA I YUZHNA TSENTRALNA BULGARIA', 'BGZ': ' BG: EXTRA-REGIO NUTS 1', 'BY0': 'BY: Belarus', 'BYZ': 'BY: Extra-region', 'CH0': 'CH: Switzerland', 'CHZ': 'CH: Extra-regio', 'CZ0': ' CZ: ČESKÁ REPUBLIKA', 'CZZ': ' CZ: EXTRA-REGIO NUTS 1', 'DE1': ' DE: BADEN-WÜRTTEMBERG', 'DE2': ' DE: BAYERN', 'DE3': ' DE: BERLIN', 'DE4': ' DE: BRANDENBURG', 'DE5': ' DE: BREMEN', 'DE6': ' DE: HAMBURG', 'DE7': ' DE: HESSEN', 'DE8': ' DE: MECKLENBURG-VORPOMMERN', 'DE9': ' DE: NIEDERSACHSEN', 'DEA': ' DE: NORDRHEIN-WESTFALEN', 'DEB': ' DE: RHEINLAND-PFALZ', 'DEC': ' DE: SAARLAND', 'DED': ' DE: SACHSEN', 'DEE': ' DE: SACHSEN-ANHALT', 'DEF': ' DE: SCHLESWIG-HOLSTEIN', 'DEG': ' DE: THÜRINGEN', 'DEZ': ' DE: EXTRA-REGIO NUTS 1', 'DK0': ' DK: DANMARK', 'DKZ': ' DK: EXTRA-REGIO NUTS 1', 'EE0': ' EE: EESTI', 'EEZ': ' EE: EXTRA-REGIO NUTS 1', 'EL3': 'GR: ATTICA (ATTIKI)', 'EL4': 'GR: NISSIA AIGAIOU-KRITI', 'EL5': 'GR: VOREIA ELLADA', 'EL6': 'GR: KENTRIKI ELLADA', 'ES1': ' ES: NOROESTE', 'ES2': ' ES: NORESTE', 'ES3': ' ES: COMUNIDAD DE MADRID', 'ES4': ' ES: CENTRO (ES)', 'ES5': ' ES: ESTE', 'ES6': ' ES: SUR', 'ES7': ' ES: CANARIAS', 'ESZ': ' ES: EXTRA-REGIO NUTS 1', 'FI1': ' FI: MANNER-SUOMI', 'FI2': ' FI: ÅLAND', 'FIZ': ' FI: EXTRA-REGIO NUTS 1', 'FR1': ' FR: ÎLE-DE-FRANCE', 'FRB': ' FR: CENTRE-VAL DE LOIRE', 'FRC': ' FR: BOURGOGNE-FRANCHE-COMTÉ', 'FRD': ' FR: NORMANDIE', 'FRE': ' FR: HAUTS-DE-FRANCE', 'FRF': ' FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE', 'FRG': ' FR: PAYS-DE-LA-LOIRE', 'FRH': ' FR: BRETAGNE', 'FRI': ' FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES', 'FRJ': ' FR: LANGUEDOC-ROUSSILLON-MIDI-PYRÉNÉES', 'FRK': ' FR: AUVERGNE-RHÔNE-ALPES', 'FRL': ' FR: PROVENCE-ALPES-CÔTE D’AZUR', 'FRM': ' FR: CORSE', 'FRY': ' FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES', 'FRZ': ' FR: EXTRA-REGIO NUTS 1', 'GE0': 'GE: Georgia', 'GEZ': 'GE: Extra-regio', 'HR0': ' HR: HRVATSKA', 'HRZ': ' HR: EXTRA-REGIO NUTS 1', 'HU1': ' HU - KÖZÉP-MAGYARORSZÁG', 'HU2': ' HU - DUNÁNTÚL', 'HU3': ' HU - ALFÖLD ÉS ÉSZAK', 'HUZ': ' HU - EXTRA-REGIO NUTS 1', 'IS0': 'IS: ÍSLAND', 'ISZ': 'IS: Extra-regio', 'ITC': ' IT: NORD-OVEST', 'ITF': ' IT: SUD', 'ITG': ' IT: ISOLE', 'ITH': ' IT: NORD-EST', 'ITI': ' IT: CENTRO (IT)', 'ITZ': ' IT: EXTRA-REGIO NUTS 1', 'LT0': ' LT: LIETUVA', 'LTZ': ' LT: EXTRA-REGIO NUTS 1', 'LV0': 'LV: LATVIJA', 'LVZ': 'LV: EXTRA-REGIO NUTS 1', 'ME0': 'ME: Montenegro', 'MK0': 'MK: MACEDONIA', 'MKZ': 'MK: EXTRA REGIO NUTS 1', 'NL1': ' NL: NOORD-NEDERLAND', 'NL2': ' NL: OOST-NEDERLAND', 'NL3': ' NL: WEST-NEDERLAND', 'NL4': ' NL: ZUID-NEDERLAND', 'NLZ': ' NL: EXTRA-REGIO NUTS 1', 'NO0': 'NO: Norway', 'NOZ': 'NO: Extra-regio', 'PL2': ' PL: MAKROREGION POŁUDNIOWY', 'PL4': ' PL: MAKROREGION PÓŁNOCNO-ZACHODNI', 'PL5': ' PL: MAKROREGION POŁUDNIOWO-ZACHODNI', 'PL6': ' PL: MAKROREGION PÓŁNOCNY', 'PL7': ' PL: MAKROREGION CENTRALNY', 'PL8': ' PL: MAKROREGION WSCHODNI', 'PL9': ' PL: MAKROREGION WOJEWÓDZTWO MAZOWIECKIE', 'PLZ': ' PL: EXTRA-REGIO NUTS 1', 'PT1': 'PT: Continente', 'PT2': 'PT: Região Autónoma dos Açores', 'PT3': 'PT: Região Autónoma da Madeira', 'PTZ': 'PT: Extra-regio', 'RO1': ' RO: MACROREGIUNEA UNU', 'RO2': ' RO: MACROREGIUNEA DOI', 'RO3': ' RO: MACROREGIUNEA TREI', 'RO4': ' RO: MACROREGIUNEA PATRU', 'ROZ': ' RO: EXTRA-REGIO NUTS 1', 'RS1': 'RS: Sever', 'RS2': 'RS: Jug', 'RSZ': 'RS: Extra-region', 'RU1': 'RU: Central Federal District', 'RU2': 'RU: North West federal district', 'RU3': 'RU: South Federal district', 'RU4': 'RU: Privolzhsky federal district', 'RU5': 'RU: Urals federal district', 'RU6': 'RU: Siberian federal district', 'RU7': 'RU: Far East federal district', 'RU8': 'RU: North Caucasian federal district', 'SE1': ' SE: ÖSTRA SVERIGE', 'SE2': ' SE: SÖDRA SVERIGE', 'SE3': ' SE: NORRA SVERIGE', 'SEZ': ' SE: EXTRA-REGIO NUTS 1', 'SI0': ' SI: SLOVENIJA', 'SIZ': ' SI: EXTRA-REGIO NUTS 1', 'SK0': ' SK: SLOVENSKO', 'SKZ': ' SK: EXTRA-REGIO NUTS 1', 'UA1': ' UA: WEST 1', 'UA2': ' UA: WEST 2', 'UA3': ' UA: THE CITY OF KYIV', 'UA4': ' UA: SOUTH', 'UA5': ' UA: NORTH', 'UA6': ' UA: EAST 1', 'UA7': ' UA: EAST 2', 'UA8': ' UA: CENTER', 'UKC': ' UK - GB-GBN: NORTH EAST (ENGLAND)', 'UKD': ' UK - GB-GBN: NORTH WEST (ENGLAND)', 'UKE': ' UK - GB-GBN: YORKSHIRE AND THE HUMBER', 'UKF': ' UK - GB-GBN: EAST MIDLANDS (ENGLAND)', 'UKG': ' UK - GB-GBN: WEST MIDLANDS (ENGLAND)', 'UKH': ' UK - GB-GBN: EAST OF ENGLAND', 'UKI': ' UK - GB-GBN: LONDON', 'UKJ': ' UK - GB-GBN: SOUTH EAST (ENGLAND)', 'UKK': ' UK - GB-GBN: SOUTH WEST (ENGLAND)', 'UKL': ' UK - GB-GBN: WALES', 'UKM': ' UK - GB-GBN: SCOTLAND', 'UKN': ' UK - GB-NIR: NORTHERN IRELAND', 'UKZ': ' UK - EXTRA-REGIO NUTS 1'}{'-1': \"don't know/no answer\", '-4': 'item not included', '-5': 'other missing'}True59418123
v275c_N2447v275c_N2nominalregion where interview was conducted: EVS numeric NUTS-2 code (Q105){80001.0: 'AL: ALBANIA - Northern Albania', 80102.0: 'AL: ALBANIA - Central Albania', 80203.0: 'AL: ALBANIA - Southern Albania', 80335.0: 'AL: EXTRA-REGIO - Extra-regio', 310100.0: 'AZ: BAKU CITY -Baku city', 310201.0: 'AZ: APSHERON - Absheron', 310202.0: 'AZ: APSHERON - Khyzy', 310203.0: 'AZ: APSHERON - Sumgait city', 310300.0: 'AZ: KUBA-KHACHMAZ - Gubinsky', 310301.0: 'AZ: KUBA-KHACHMAZ - Gusar', 310302.0: 'AZ: KUBA-KHACHMAZ - Khachmaz', 310303.0: 'AZ: KUBA-KHACHMAZ - Shabran', 310304.0: 'AZ: KUBA-KHACHMAZ - Siyazan', 310400.0: 'AZ: ARAN - Agdash', 310401.0: 'AZ: ARAN - Agdzhebedinsky', 310402.0: 'AZ: ARAN - Barda', 310403.0: 'AZ: ARAN - Beylagan', 310404.0: 'AZ: ARAN - Bilasuvar', 310405.0: 'AZ: ARAN - Goychay', 310406.0: 'AZ: ARAN - Hajikabul', 310407.0: 'AZ: ARAN - Imishli', 310408.0: 'AZ: ARAN - Kurdamir', 310409.0: 'AZ: ARAN - Mingechaur city', 310410.0: 'AZ: ARAN - Neftchala', 310411.0: 'AZ: ARAN - Saatly', 310412.0: 'AZ: ARAN - Sabirabad', 310413.0: 'AZ: ARAN - Salyan', 310414.0: 'AZ: ARAN - Shirvan city', 310415.0: 'AZ: ARAN - Ujar', 310416.0: 'AZ: ARAN - Yevlakh', 310417.0: 'AZ: ARAN - Zardob', 310500.0: 'AZ: LENKARAN - Astara', 310501.0: 'AZ: LENKARAN - Jalilabad', 310502.0: 'AZ: LENKARAN - Lankaran', 310503.0: 'AZ: LENKARAN - Lerik', 310504.0: 'AZ: LENKARAN - Masalli', 310505.0: 'AZ: LENKARAN - Yardimli', 310600.0: 'AZ: MOUNTAINOUS SHIRVAN - Agsu', 310601.0: 'AZ: MOUNTAINOUS SHIRVAN - Gobustan', 310602.0: 'AZ: MOUNTAINOUS SHIRVAN - Ismaili', 310603.0: 'AZ: MOUNTAINOUS SHIRVAN - Shemakha', 310700.0: 'AZ: GANJA-KAZAKH - Agstafa', 310701.0: 'AZ: GANJA-KAZAKH - Dashkesan', 310702.0: 'AZ: GANJA-KAZAKH - Ganja city', 310703.0: 'AZ: GANJA-KAZAKH - Gay-Gelsky', 310704.0: 'AZ: GANJA-KAZAKH - Gazakh', 310705.0: 'AZ: GANJA-KAZAKH - Goranboy', 310706.0: 'AZ: GANJA-KAZAKH - Kedabegsky', 310707.0: 'AZ: GANJA-KAZAKH - Naftalan city', 310708.0: 'AZ: GANJA-KAZAKH - Samukh', 310709.0: 'AZ: GANJA-KAZAKH - Shamkir', 310710.0: 'AZ: GANJA-KAZAKH - Tovuz', 310800.0: 'AZ: SHEKI-ZAKATALA - Belakansky', 310801.0: 'AZ: SHEKI-ZAKATALA - Gabala region', 310802.0: 'AZ: SHEKI-ZAKATALA - Gakh', 310803.0: 'AZ: SHEKI-ZAKATALA - Oguz', 310804.0: 'AZ: SHEKI-ZAKATALA - Sheki', 310805.0: 'AZ: SHEKI-ZAKATALA - Zakatala', 313535.0: 'AZ: EXTRA-REGIO - extra-regio', 400101.0: 'AT: OSTÖSTERREICH - Burgenland', 400102.0: 'AT: OSTÖSTERREICH - Niederösterreich', 400103.0: 'AT: OSTÖSTERREICH - Wien', 400201.0: 'AT: SÜDÖSTERREICH - Kärnten', 400202.0: 'AT: SÜDÖSTERREICH - Steiermark', 400301.0: 'AT: WESTÖSTERREICH - Oberösterreich', 400302.0: 'AT: WESTÖSTERREICH - Salzburg', 400303.0: 'AT: WESTÖSTERREICH - Tirol', 400304.0: 'AT: WESTÖSTERREICH - Vorarlberg', 403535.0: 'AT: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 510001.0: 'AM: ARMENIA - Yerevan', 510002.0: 'AM: ARMENIA - II Region', 510003.0: 'AM: ARMENIA - III Region', 510004.0: 'AM: ARMENIA - IV Region', 513535.0: 'AM: EXTRA-REGIO - extra-regio', 700001.0: 'BA: BOSNIA AND HERZEGOVINA - Federation of Bosnia i Herzegovina', 700002.0: 'BA: BOSNIA AND HERZEGOVINA - Republica Srpska', 700003.0: 'BA: BOSNIA AND HERZEGOVINA - Brčko DISTRICT', 1000301.0: 'BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Severozapaden', 1000302.0: 'BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Severen tsentralen', 1000303.0: 'BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Severoiztochen', 1000304.0: 'BG: SEVERNA I YUGOIZTOCHNA BULGARIA - Yugoiztochen', 1000401.0: 'BG: YUGOZAPADNA I YUZHNA TSENTRALNA BULGARIA - Yugozapaden', 1000402.0: 'BG: YUGOZAPADNA I YUZHNA TSENTRALNA BULGARIA - Yuzhen tsentralen', 1003535.0: 'BG: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 1120000.0: 'BY: BELARUS - Belarus', 1120001.0: 'BY: BELARUS - Brest region', 1120002.0: 'BY: BELARUS - Vitebsk region', 1120003.0: 'BY: BELARUS - Gomel region', 1120004.0: 'BY: BELARUS - Grodno region', 1120005.0: 'BY: BELARUS - Minsk (capital city)', 1120006.0: 'BY: BELARUS - Minsk region', 1120007.0: 'BY: BELARUS - Mogilev region', 1123535.0: 'BY: EXTRA-REGIO - extra-regio', 1910003.0: 'HR: HRVATSKA - Jadranska Hrvatska', 1910004.0: 'HR: HRVATSKA - Kontinentalna Hrvatska', 1913535.0: 'HR: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 2030001.0: 'CZ: ČESKÁ REPUBLIKA - Praha', 2030002.0: 'CZ: ČESKÁ REPUBLIKA - Střední Čechy', 2030003.0: 'CZ: ČESKÁ REPUBLIKA - Jihozápad', 2030004.0: 'CZ: ČESKÁ REPUBLIKA - Severozápad', 2030005.0: 'CZ: ČESKÁ REPUBLIKA - Severovýchod', 2030006.0: 'CZ: ČESKÁ REPUBLIKA - Jihovýchod', 2030007.0: 'CZ: ČESKÁ REPUBLIKA - Střední Morava', 2030008.0: 'CZ: ČESKÁ REPUBLIKA - Moravskoslezsko', 2033535.0: 'CZ: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 2080001.0: 'DK: DANMARK - Hovedstaden', 2080002.0: 'DK: DANMARK - Sjælland', 2080003.0: 'DK: DANMARK - Syddanmark', 2080004.0: 'DK: DANMARK - Midtjylland', 2080005.0: 'DK: DANMARK - Nordjylland', 2083535.0: 'DK: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 2330000.0: 'EE: EESTI - Esti', 2333535.0: 'EE: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 2460109.0: 'FI: MANNER-SUOMI - Länsi-Suomi', 2460111.0: 'FI: MANNER-SUOMI - Helsinki-Uusimaa', 2460112.0: 'FI: MANNER-SUOMI - Etelä-Suomi', 2460113.0: 'FI: MANNER-SUOMI - Pohjois- ja Itä-Suomi', 2460200.0: 'FI: ÅLAND - ÅLAND', 2463535.0: 'FI: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 2500100.0: 'FR: ÎLE-DE-FRANCE - Île-de-France', 2501100.0: 'FR: CENTRE-VAL DE LOIRE - Centre-Val de Loire', 2501201.0: 'FR: BOURGOGNE-FRANCHE-COMTÉ - Bourgogne', 2501202.0: 'FR: BOURGOGNE-FRANCHE-COMTÉ - Franche-Comté', 2501301.0: 'FR: NORMANDIE - Basse-Normandie', 2501302.0: 'FR: NORMANDIE - Haute-Normandie', 2501401.0: 'FR: HAUTS-DE-FRANCE - Nord-Pas-de-Calais', 2501402.0: 'FR: HAUTS-DE-FRANCE - Picardie', 2501501.0: 'FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE - Alsace', 2501502.0: 'FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE - Champagne-Ardenne', 2501503.0: 'FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE - Lorraine', 2501600.0: 'FR: PAYS-DE-LA-LOIRE - Pays-de-la-Loire', 2501700.0: 'FR: BRETAGNE - Bretagne', 2501801.0: 'FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES - Aquitaine', 2501802.0: 'FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES - Limousin', 2501803.0: 'FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES - Poitou-Charentes', 2501901.0: 'FR: LANGUEDOC-ROUSSILLON-MIDI-PYRÉNÉES - Languedoc-Roussillon', 2501902.0: 'FR: LANGUEDOC-ROUSSILLON-MIDI-PYRÉNÉES - Midi-Pyrénées', 2502001.0: 'FR: AUVERGNE-RHÔNE-ALPES - Auvergne', 2502002.0: 'FR: AUVERGNE-RHÔNE-ALPES - Rhône-Alpes', 2502100.0: 'FR: PROVENCE-ALPES-CÔTE D’AZUR - Provence-Alpes-Côte d’Azur', 2502200.0: 'FR: CORSE - Corse', 2503401.0: 'FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Guadeloupe', 2503402.0: 'FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Martinique', 2503403.0: 'FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Guyane', 2503404.0: 'FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - La Réunion', 2503405.0: 'FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES - Mayotte', 2503535.0: 'FR: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 2680001.0: 'GE: GEORGIA - Capital', 2680002.0: 'GE: GEORGIA - Western Georgia', 2680003.0: 'GE: GEORGIA - Eastern Georgia', 2683535.0: 'GE: EXTRA-REGIO - Extra-regio', 2760101.0: 'DE: BADEN-WÜRTTEMBERG - Stuttgart', 2760102.0: 'DE: BADEN-WÜRTTEMBERG - Karlsruhe', 2760103.0: 'DE: BADEN-WÜRTTEMBERG - Freiburg', 2760104.0: 'DE: BADEN-WÜRTTEMBERG - Tübingen', 2760201.0: 'DE: BAYERN - Oberbayern', 2760202.0: 'DE: BAYERN - Niederbayern', 2760203.0: 'DE: BAYERN - Oberpfalz', 2760204.0: 'DE: BAYERN - Oberfranken', 2760205.0: 'DE: BAYERN - Mittelfranken', 2760206.0: 'DE: BAYERN - Unterfranken', 2760207.0: 'DE: BAYERN - Schwaben', 2760300.0: 'DE: BERLIN - Berlin', 2760400.0: 'DE: BRANDENBURG - Brandenburg', 2760500.0: 'DE: BREMEN - Brandenburg', 2760600.0: 'DE: HAMBURG - Hamburg', 2760701.0: 'DE: HESSEN - Darmstadt', 2760702.0: 'DE: HESSEN - Gießen', 2760703.0: 'DE: HESSEN - Kassel', 2760800.0: 'DE: MECKLENBURG-VORPOMMERN - Mecklenburg-Vorpommern', 2760901.0: 'DE: NIEDERSACHSEN - Braunschweig', 2760902.0: 'DE: NIEDERSACHSEN - Hannover', 2760903.0: 'DE: NIEDERSACHSEN - Lüneburg', 2760904.0: 'DE: NIEDERSACHSEN - Weser-Ems', 2761001.0: 'DE: NORDRHEIN-WESTFALEN - Düsseldorf', 2761002.0: 'DE: NORDRHEIN-WESTFALEN - Köln', 2761003.0: 'DE: NORDRHEIN-WESTFALEN - Münster', 2761004.0: 'DE: NORDRHEIN-WESTFALEN - Detmold', 2761005.0: 'DE: NORDRHEIN-WESTFALEN - Arnsberg', 2761101.0: 'DE: RHEINLAND-PFALZ - Koblenz', 2761102.0: 'DE: RHEINLAND-PFALZ - Trier', 2761103.0: 'DE: RHEINLAND-PFALZ - Rheinhessen-Pfalz', 2761200.0: 'DE: SAARLAND - Saarland', 2761302.0: 'DE: SACHSEN - Dresden', 2761304.0: 'DE: SACHSEN - Chemnitz', 2761305.0: 'DE: SACHSEN - Leipzig', 2761400.0: 'DE: SACHSEN-ANHALT - Sachsen-Anhalt', 2761500.0: 'DE: SCHLESWIG-HOLSTEIN - Schleswig-Holstein', 2761600.0: 'DE: THÜRINGEN - Thüringen', 2763535.0: 'DE: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 3000300.0: 'GR: ATTICA (ATTIKI) - Attica', 3000401.0: 'GR: NISSIA AIGAIOU-KRITI - North Aegean (Previous Voreio Aigaio)', 3000402.0: 'GR: NISSIA AIGAIOU-KRITI - South Aegean (Previous Notio Aigaio)', 3000403.0: 'GR: NISSIA AIGAIOU-KRITI - Crete (Previous Kriti)', 3000501.0: 'GR: VOREIA ELLADA - Eastern Macedonia And Thrace', 3000502.0: 'GR: VOREIA ELLADA - Central Macedonia', 3000503.0: 'GR: VOREIA ELLADA - Western Macedonia', 3000504.0: 'GR: VOREIA ELLADA - Epirus', 3000601.0: 'GR: KENTRIKI ELLADA - Thessaly', 3000602.0: 'GR: KENTRIKI ELLADA - Ionian Islands', 3000603.0: 'GR: KENTRIKI ELLADA - Western Greece', 3000604.0: 'GR: KENTRIKI ELLADA - Central Greece (Previous Sterea Ellada)', 3000605.0: 'GR: KENTRIKI ELLADA - Peloponnese', 3003535.0: 'GR: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 3480101.0: 'HU: KÖZÉP-MAGYARORSZÁG - Budapest', 3480102.0: 'HU: KÖZÉP-MAGYARORSZÁG - Pest', 3480201.0: 'HU: DUNÁNTÚL - Közép-Dunántúl', 3480202.0: 'HU: DUNÁNTÚL - Nyugat-Dunántúl', 3480203.0: 'HU: DUNÁNTÚL - Dél-Dunántúl', 3480301.0: 'HU: ALFÖLD ÉS ÉSZAK - Észak-Magyarország', 3480302.0: 'HU: ALFÖLD ÉS ÉSZAK - Észak-Alföld', 3480303.0: 'HU: ALFÖLD ÉS ÉSZAK - Dél-Alföld', 3483535.0: 'HU: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 3520000.0: 'IS: ÍSLAND - Ísland', 3523535.0: 'IS: EXTRA-REGIO - Extra-regio', 3801201.0: 'IT: NORD-OVEST - Piemonte', 3801202.0: 'IT: NORD-OVEST - Valle d’Aosta/Vallée d’Aoste', 3801203.0: 'IT: NORD-OVEST - Liguria', 3801204.0: 'IT: NORD-OVEST - Lombardia', 3801501.0: 'IT: SUD - Abruzzo', 3801502.0: 'IT: SUD - Molise', 3801503.0: 'IT: SUD - Campania', 3801504.0: 'IT: SUD - Puglia', 3801505.0: 'IT: SUD - Basilicata', 3801506.0: 'IT: SUD - Calabria', 3801601.0: 'IT: ISOLE - Sicilia', 3801602.0: 'IT: ISOLE - Sardegna', 3801701.0: 'IT: NORD-EST - Provincia Autonoma di Bolzano/Bozen\\xa0', 3801702.0: 'IT: NORD-EST - Provincia Autonoma di Trento', 3801703.0: 'IT: NORD-EST - Veneto', 3801704.0: 'IT: NORD-EST - Friuli-Venezia Giulia', 3801705.0: 'IT: NORD-EST - Emilia-Romagna', 3801801.0: 'IT: CENTRO (IT) - Toscana', 3801802.0: 'IT: CENTRO (IT) - Umbria', 3801803.0: 'IT: CENTRO (IT) - Marche', 3801804.0: 'IT: CENTRO (IT) - Lazio', 3803535.0: 'IT: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 4280000.0: 'LV: LATVIJA - Latvija', 4283535.0: ' LV: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 4400001.0: 'LT: LIETUVA - Sostinės regionas', 4400002.0: 'LT: LIETUVA - Vidurio ir vakarų Lietuvos regionas', 4403535.0: 'LT: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 4990000.0: 'ME: MONTENEGRO - Montenegro', 5280101.0: 'NL: NOORD-NEDERLAND - Groningen', 5280102.0: 'NL: NOORD-NEDERLAND - Friesland (NL)', 5280103.0: 'NL: NOORD-NEDERLAND - Drenthe', 5280201.0: 'NL: OOST-NEDERLAND - Overijssel', 5280202.0: 'NL: OOST-NEDERLAND - Gelderland', 5280203.0: 'NL: OOST-NEDERLAND - Flevoland', 5280301.0: 'NL: WEST-NEDERLAND - Utrecht', 5280302.0: 'NL: WEST-NEDERLAND - Noord-Holland', 5280303.0: 'NL: WEST-NEDERLAND - Zuid-Holland', 5280304.0: 'NL: WEST-NEDERLAND - Zeeland', 5280401.0: 'NL: ZUID-NEDERLAND - Noord-Brabant', 5280402.0: 'NL: ZUID-NEDERLAND - Limburg (NL)', 5283535.0: 'NL: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 5780001.0: 'NO: NORWAY - Oslo og Akershus', 5780002.0: 'NO: NORWAY - Hedmark og Oppland', 5780003.0: 'NO: NORWAY - Sør-Østlandet', 5780004.0: 'NO: NORWAY - Agder og Rogaland', 5780005.0: 'NO: NORWAY - Vestlandet', 5780006.0: 'NO: NORWAY - Trøndelag', 5780007.0: 'NO: NORWAY - Nord- Norge', 5783535.0: 'NO: EXTRA-REGIO - Extra-regio', 6160201.0: 'PL: MAKROREGION POŁUDNIOWY - Małopolskie', 6160202.0: 'PL: MAKROREGION POŁUDNIOWY - Śląskie', 6160401.0: 'PL: MAKROREGION PÓŁNOCNO-ZACHODNI - Wielkopolskie', 6160402.0: 'PL: MAKROREGION PÓŁNOCNO-ZACHODNI - Zachodniopomorskie', 6160403.0: 'PL: MAKROREGION PÓŁNOCNO-ZACHODNI - Lubuskie', 6160501.0: 'PL: MAKROREGION POŁUDNIOWO-ZACHODNI - Dolnośląskie', 6160502.0: 'PL: MAKROREGION POŁUDNIOWO-ZACHODNI - Opolskie', 6160601.0: 'PL: MAKROREGION PÓŁNOCNY - Kujawsko-pomorskie', 6160602.0: 'PL: MAKROREGION PÓŁNOCNY - Warmińsko-mazurskie', 6160603.0: 'PL: MAKROREGION PÓŁNOCNY - Pomorskie', 6160701.0: 'PL: MAKROREGION CENTRALNY - Łódzkie', 6160702.0: 'PL: MAKROREGION CENTRALNY - Świętokrzyskie', 6160801.0: 'PL: MAKROREGION WSCHODNI - Lubelskie', 6160802.0: 'PL: MAKROREGION WSCHODNI - Podkarpackie', 6160804.0: 'PL: MAKROREGION WSCHODNI - Podlaskie', 6160901.0: 'PL: MAKROREGION WOJEWÓDZTWO MAZOWIECKIE - Warszawski stołeczny', 6160902.0: 'PL: MAKROREGION WOJEWÓDZTWO MAZOWIECKIE - Mazowiecki regionalny', 6163535.0: 'PL: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 6200101.0: 'PT: Continente - Norte', 6200105.0: 'PT: Continente - Algarve', 6200106.0: 'PT: Continente - Centro', 6200107.0: 'PT: Continente - Área Metropolitana de Lisboa', 6200108.0: 'PT: Continente - Alentejo', 6200200.0: 'PT: Região Autónoma dos Açores - Região Autónoma dos Açores', 6200300.0: 'PT: Região Autónoma da Madeira - Região Autónoma da Madeira', 6203535.0: 'PT: Extra-regio - Extra-regio', 6420101.0: 'RO: MACROREGIUNEA UNU - Nord-Vest', 6420102.0: 'RO: MACROREGIUNEA UNU - Centru', 6420201.0: 'RO: MACROREGIUNEA DOI - Nord-Est', 6420202.0: 'RO: MACROREGIUNEA DOI - Sud-Est', 6420301.0: 'RO: MACROREGIUNEA TREI - Sud-Muntenia', 6420302.0: 'RO: MACROREGIUNEA TREI - București-Ilfov', 6420401.0: 'RO: MACROREGIUNEA PATRU - Sud-Vest Oltenia', 6420402.0: 'RO: MACROREGIUNEA PATRU - Vest', 6423535.0: 'RO: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 6430101.0: 'RU: CENTRAL FEDERAL DISTRICT - Central Federal District', 6430201.0: 'RU: NORTH WEST FEDERAL DISTRICT - North West Federal District', 6430301.0: 'RU: SOUTH FEDERAL DISTRICT - South Federal District', 6430401.0: 'RU: PRIVOLZHSKY FEDERAL DISTRICT - Privolzhsky Federal District', 6430501.0: 'RU: URALS FEDERAL DISTRICT - Urals Federal District', 6430601.0: 'RU: SIBERIAN FEDERAL DISTRICT - Siberian Federal District', 6430701.0: 'RU: FAR EAST FEDERAL DISTRICT - Far East Federal District', 6430801.0: 'RU: NORTH CAUCASIAN FEDERAL DISTRICT - North Caucasian federal district', 6880101.0: 'RS: SEVER - Beogradski region', 6880102.0: 'RS: SEVER - Region Vojvodine', 6880201.0: 'RS: JUG - Region Šumadije i Zapadne Srbije', 6880202.0: 'RS: JUG - Region Južne i Istočne Srbije', 6883535.0: 'RS: EXTRA-REGIO - Extra-regio', 7030001.0: 'SK: SLOVENSKO - Bratislavský kraj', 7030002.0: 'SK: SLOVENSKO - Západné Slovensko', 7030003.0: 'SK: SLOVENSKO - Stredné Slovensko', 7030004.0: 'SK: SLOVENSKO - Východné Slovensko', 7033535.0: 'SK: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 7050003.0: 'SI: SLOVENIJA - Vzhodna Slovenija', 7050004.0: 'SI: SLOVENIJA - Zahodna Slovenija', 7053535.0: 'SI: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 7240101.0: 'ES: NOROESTE - Galicia', 7240102.0: 'ES: NOROESTE - Principado de Asturias', 7240103.0: 'ES: NOROESTE - Cantabria', 7240201.0: 'ES: NORESTE - País Vasco', 7240202.0: 'ES: NORESTE - Comunidad Foral de Navarra', 7240203.0: 'ES: NORESTE - La Rioja', 7240204.0: 'ES: NORESTE - Aragón', 7240300.0: 'ES: COMUNIDAD DE MADRID - Comunidad de Madrid', 7240401.0: 'ES: CENTRO (ES) - Castilla y León', 7240402.0: 'ES: CENTRO (ES) - Castilla-La Mancha', 7240403.0: 'ES: CENTRO (ES) - Extremadura', 7240501.0: 'ES: ESTE - Cataluña', 7240502.0: 'ES: ESTE - Comunidad Valenciana', 7240503.0: 'ES: ESTE - Illes Balears', 7240601.0: 'ES: SUR - Andalucía', 7240602.0: 'ES: SUR - Región de Murcia', 7240603.0: 'ES: SUR - Ciudad Autónoma de Ceuta', 7240604.0: 'ES: SUR - Ciudad Autónoma de Melilla', 7240700.0: 'ES: CANARIAS - Canarias', 7243535.0: 'ES: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 7520101.0: 'SE: ÖSTRA SVERIGE - Stockholm', 7520102.0: 'SE: ÖSTRA SVERIGE - Östra Mellansverige', 7520201.0: 'SE: SÖDRA SVERIGE - Småland med öarna', 7520202.0: 'SE: SÖDRA SVERIGE - Sydsverige', 7520203.0: 'SE: SÖDRA SVERIGE - Västsverige', 7520301.0: 'SE: NORRA SVERIGE - Norra Mellansverige', 7520302.0: 'SE: NORRA SVERIGE - Mellersta Norrland', 7520303.0: 'SE: NORRA SVERIGE - Övre Norrland', 7523535.0: 'SE: EXTRA-REGIO NUTS 1 - Extra-Regio NUTS 2', 7560001.0: 'CH: SWITZERLAND - Region Lemanique', 7560002.0: 'CH: SWITZERLAND - Espace Mittelland', 7560003.0: 'CH: SWITZERLAND - Nordwestschweiz', 7560004.0: 'CH: SWITZERLAND - Zürich', 7560005.0: 'CH: SWITZERLAND - Ostschweiz', 7560006.0: 'CH: SWITZERLAND - Zentralschweiz', 7560007.0: 'CH: SWITZERLAND - Ticino', 7563535.0: 'CH: EXTRA-REGIO - Extra-regio', 8040101.0: 'UA: WEST 1 - Volyn region', 8040102.0: 'UA: WEST 1 - Zakarpattya region', 8040103.0: 'UA: WEST 1 - Ivano-Frankivsk region', 8040104.0: 'UA: WEST 1 - Lviv region', 8040201.0: 'UA: WEST 2 - Rivne region', 8040202.0: 'UA: WEST 2 - Ternopil region', 8040203.0: 'UA: WEST 2 - Khmelnytsky region', 8040204.0: 'UA: WEST 2 - Chernivtsi region', 8040301.0: 'UA: THE CITY OF KYIV - The city of Kyiv', 8040401.0: 'UA: SOUTH - Mykolaiv region', 8040402.0: 'UA: SOUTH - Odesa region', 8040403.0: 'UA: SOUTH - Kherson region', 8040501.0: 'UA: NORTH - Zhytomyr region', 8040502.0: 'UA: NORTH - Kyiv region', 8040503.0: 'UA: NORTH - Chernihiv region', 8040601.0: 'UA: EAST 1 - Dnipropetrovsk region', 8040602.0: 'UA: EAST 1 - Sumy region', 8040603.0: 'UA: EAST 1 - Kharkiv region', 8040701.0: 'UA: EAST 2 - Donetsk region', 8040702.0: 'UA: EAST 2 - Zaporizhya region', 8040703.0: 'UA: EAST 2 - Luhansk region', 8040801.0: 'UA: CENTER - Vinnytsia region', 8040802.0: 'UA: CENTER - Kirovograd region', 8040803.0: 'UA: CENTER - Poltava region', 8040804.0: 'UA: CENTER - Cherkasy region', 8070000.0: 'MK: MACEDONIA - Macedonia', 8073535.0: 'MK: MACEDONIA - extra-regio', 8261201.0: 'UK - GB-GBN: NORTH EAST (ENGLAND) - Tees Valley and Durham', 8261202.0: 'UK - GB-GBN: NORTH EAST (ENGLAND) - Northumberland and Tyne and Wear', 8261301.0: 'UK - GB-GBN: NORTH WEST (ENGLAND) - Cumbria', 8261303.0: 'UK - GB-GBN: NORTH WEST (ENGLAND) - Greater Manchester', 8261304.0: 'UK - GB-GBN: NORTH WEST (ENGLAND) - Lancashire', 8261306.0: 'UK - GB-GBN: NORTH WEST (ENGLAND) - Cheshire', 8261307.0: 'UK - GB-GBN: NORTH WEST (ENGLAND) - Merseyside', 8261401.0: 'UK - GB-GBN: YORKSHIRE AND THE HUMBER - East Yorkshire and Northern Lincolnshire', 8261402.0: 'UK - GB-GBN: YORKSHIRE AND THE HUMBER - North Yorkshire', 8261403.0: 'UK - GB-GBN: YORKSHIRE AND THE HUMBER - South Yorkshire', 8261404.0: 'UK - GB-GBN: YORKSHIRE AND THE HUMBER - West Yorkshire', 8261501.0: 'UK - GB-GBN: EAST MIDLANDS (ENGLAND) - Derbyshire and Nottinghamshire', 8261502.0: 'UK - GB-GBN: EAST MIDLANDS (ENGLAND) - Leicestershire, Rutland and Northamptonshire', 8261503.0: 'UK - GB-GBN: EAST MIDLANDS (ENGLAND) - Lincolnshire', 8261601.0: 'UK - GB-GBN: WEST MIDLANDS (ENGLAND) - Herefordshire, Worcestershire and Warwickshire', 8261602.0: 'UK - GB-GBN: WEST MIDLANDS (ENGLAND) - Shropshire and Staffordshire', 8261603.0: 'UK - GB-GBN: WEST MIDLANDS (ENGLAND) - West Midlands', 8261701.0: 'UK - GB-GBN: EAST OF ENGLAND - East Anglia', 8261702.0: 'UK - GB-GBN: EAST OF ENGLAND - Bedfordshire and Hertfordshire', 8261703.0: 'UK - GB-GBN: EAST OF ENGLAND - Essex', 8261803.0: 'UK - GB-GBN: LONDON - Inner London West', 8261804.0: 'UK - GB-GBN: LONDON - Inner London East', 8261805.0: 'UK - GB-GBN: LONDON - Outer London - East and North East', 8261806.0: 'UK - GB-GBN: LONDON - Outer London - South', 8261807.0: 'UK - GB-GBN: LONDON - Outer London - West and North West', 8261901.0: 'UK - GB-GBN: SOUTH EAST (ENGLAND) - Berkshire, Buckinghamshire and Oxfordshire', 8261902.0: 'UK - GB-GBN: SOUTH EAST (ENGLAND) - Surrey, East and West Sussex', 8261903.0: 'UK - GB-GBN: SOUTH EAST (ENGLAND) - Hampshire and Isle of Wight', 8261904.0: 'UK - GB-GBN: SOUTH EAST (ENGLAND) - Kent', 8262001.0: 'UK - GB-GBN: SOUTH WEST (ENGLAND) - Gloucestershire, Wiltshire and Bristol/Bath area', 8262002.0: 'UK - GB-GBN: SOUTH WEST (ENGLAND) - Dorset and Somerset', 8262003.0: 'UK - GB-GBN: SOUTH WEST (ENGLAND) - Cornwall and Isles of Scilly', 8262004.0: 'UK - GB-GBN: SOUTH WEST (ENGLAND) - Devon', 8262101.0: 'UK - GB-GBN: WALES - West Wales and The Valleys', 8262102.0: 'UK - GB-GBN: WALES - East Wales', 8262205.0: 'UK - GB-GBN: SCOTLAND - North Eastern Scotland', 8262206.0: 'UK - GB-GBN: SCOTLAND - Highlands and Islands', 8262207.0: 'UK - GB-GBN: SCOTLAND - Eastern Scotland', 8262208.0: 'UK - GB-GBN: SCOTLAND - West Central Scotland', 8262209.0: 'UK - GB-GBN: SCOTLAND - Southern Scotland', 8263535.0: 'UK - EXTRA-REGIO - EXTRA-REGIO', 9092300.0: 'UK - GB-NIR: NORTHERN IRELAND - Northern Ireland'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True57248312
v275c_N1448v275c_N1nominalregion where interview was conducted: EVS numeric NUTS-1 code (Q105){800.0: 'AL: ALBANIA', 835.0: 'AL: EXTRA-REGION', 3101.0: 'AZ: BAKU CITY', 3102.0: 'AZ: APSHERON', 3103.0: 'AZ: KUBA-KHACHMAZ', 3104.0: 'AZ: ARAN', 3105.0: 'AZ: LENKARAN', 3106.0: 'AZ: MOUNTAINOUS SHIRVAN', 3107.0: 'AZ: GANJA-KAZAKH', 3108.0: 'AZ: SHEKI-ZAKATALA', 3135.0: 'AZ: EXTRA-REGIO', 4001.0: 'AT: OSTÖSTERREICH', 4002.0: 'AT: SÜDÖSTERREICH', 4003.0: 'AT: WESTÖSTERREICH', 4035.0: 'AT: EXTRA-REGIO NUTS 1', 5100.0: 'AM: ARMENIA', 5135.0: 'AM: EXTRA-REGIO', 7000.0: 'BA: BOSNIA AND HERZEGOVINA', 10000.0: 'BG: BULGARIA', 10003.0: 'BG: SEVERNA I YUGOIZTOCHNA BULGARIA', 10004.0: 'BG: YUGOZAPADNA I YUZHNA TSENTRALNA BULGARIA', 10035.0: 'BG: EXTRA-REGIO NUTS 1', 11200.0: 'BY: BELARUS', 11235.0: 'BY: EXTRA-REGIO', 19100.0: 'HR: HRVATSKA', 19135.0: 'HR: EXTRA-REGIO NUTS 1', 20300.0: 'CZ: ČESKÁ REPUBLIKA', 20335.0: 'CZ: EXTRA-REGIO NUTS 1', 20800.0: 'DK: DANMARK', 20835.0: 'DK: EXTRA-REGIO NUTS 1', 23300.0: 'EE: EESTI', 23335.0: 'EE: EXTRA-REGIO NUTS 1', 24601.0: 'FI: MANNER-SUOMI', 24602.0: 'FI: ÅLAND', 24635.0: 'FI: EXTRA-REGIO NUTS 1', 25001.0: 'FR: ÎLE-DE-FRANCE', 25011.0: 'FR: CENTRE-VAL DE LOIRE', 25012.0: 'FR: BOURGOGNE-FRANCHE-COMTÉ', 25013.0: 'FR: NORMANDIE', 25014.0: 'FR: HAUTS-DE-FRANCE', 25015.0: 'FR: ALSACE-CHAMPAGNE-ARDENNE-LORRAINE', 25016.0: 'FR: PAYS-DE-LA-LOIRE', 25017.0: 'FR: BRETAGNE', 25018.0: 'FR: AQUITAINE-LIMOUSIN-POITOU-CHARENTES', 25019.0: 'FR: LANGUEDOC-ROUSSILLON-MIDI-PYRÉNÉES', 25020.0: 'FR: AUVERGNE-RHÔNE-ALPES', 25021.0: 'FR: PROVENCE-ALPES-CÔTE D’AZUR', 25022.0: 'FR: CORSE', 25034.0: 'FR: RUP FR — RÉGIONS ULTRAPÉRIPHÉRIQUES FRANÇAISES', 25035.0: 'FR: EXTRA-REGIO NUTS 1', 26800.0: 'GE: GEORGIA', 26835.0: 'GE: EXTRA-REGIO', 27601.0: 'DE: BADEN-WÜRTTEMBERG', 27602.0: 'DE: BAYERN', 27603.0: 'DE: BERLIN', 27604.0: 'DE: BRANDENBURG', 27605.0: 'DE: BREMEN', 27606.0: 'DE: HAMBURG', 27607.0: 'DE: HESSEN', 27608.0: 'DE: MECKLENBURG-VORPOMMERN', 27609.0: 'DE: NIEDERSACHSEN', 27610.0: 'DE: NORDRHEIN-WESTFALEN', 27611.0: 'DE: RHEINLAND-PFALZ', 27612.0: 'DE: SAARLAND', 27613.0: 'DE: SACHSEN', 27614.0: 'DE: SACHSEN-ANHALT', 27615.0: 'DE: SCHLESWIG-HOLSTEIN', 27616.0: 'DE: THÜRINGEN', 27635.0: 'DE: EXTRA-REGIO NUTS 1', 30003.0: 'GR: ATTICA (ATTIKI)', 30004.0: 'GR: NISSIA AIGAIOU-KRITI', 30005.0: 'GR: VOREIA ELLADA', 30006.0: 'GR: KENTRIKI ELLADA', 30035.0: 'GR: EXTRA-REGIO NUTS 1', 34801.0: 'HU: KÖZÉP-MAGYARORSZÁG', 34802.0: 'HU: DUNÁNTÚL', 34803.0: 'HU: ALFÖLD ÉS ÉSZAK', 34835.0: 'HU: EXTRA-REGIO NUTS 1', 35200.0: 'IS: ÍSLAND', 35235.0: 'IS: EXTRA-REGIO', 38012.0: 'IT: NORD-OVEST', 38015.0: 'IT: SUD', 38016.0: 'IT: ISOLE', 38017.0: 'IT: NORD-EST', 38018.0: 'IT: CENTRO (IT)', 38035.0: 'IT: EXTRA-REGIO NUTS 1', 42800.0: 'LV: LATVIJA', 42835.0: 'LV: EXTRA-REGIO NUTS 1', 44000.0: 'LT: LIETUVA', 44035.0: 'LT: EXTRA-REGIO NUTS 1', 49900.0: 'ME: MONTENEGRO', 52801.0: 'NL: NOORD-NEDERLAND', 52802.0: 'NL: OOST-NEDERLAND', 52803.0: 'NL: WEST-NEDERLAND', 52804.0: 'NL: ZUID-NEDERLAND', 52835.0: 'NL: EXTRA-REGIO NUTS 1', 57800.0: 'NO: NORWAY', 57835.0: 'NO: EXTRA-REGIO', 61602.0: 'PL: MAKROREGION POŁUDNIOWY', 61604.0: 'PL: MAKROREGION PÓŁNOCNO-ZACHODNI', 61605.0: 'PL: MAKROREGION POŁUDNIOWO-ZACHODNI', 61606.0: 'PL: MAKROREGION PÓŁNOCNY', 61607.0: 'PL: MAKROREGION CENTRALNY', 61608.0: 'PL: MAKROREGION WSCHODNI', 61609.0: 'PL: MAKROREGION WOJEWÓDZTWO MAZOWIECKIE', 61635.0: 'PL: EXTRA-REGIO NUTS 1', 62001.0: 'PT: Continente', 62002.0: 'PT: Região Autónoma dos Açores', 62003.0: 'PT: Região Autónoma da Madeira', 62035.0: 'PT: Extra-regio', 64201.0: 'RO: MACROREGIUNEA UNU', 64202.0: 'RO: MACROREGIUNEA DOI', 64203.0: 'RO: MACROREGIUNEA TREI', 64204.0: 'RO: MACROREGIUNEA PATRU', 64235.0: 'RO: EXTRA-REGIO NUTS 1', 64301.0: 'RU: CENTRAL FEDERAL DISTRICT', 64302.0: 'RU: NORTH WEST FEDERAL DISTRICT', 64303.0: 'RU: SOUTH FEDERAL DISTRICT', 64304.0: 'RU: PRIVOLZHSKY FEDERAL DISTRICT', 64305.0: 'RU: URALS FEDERAL DISTRICT', 64306.0: 'RU: SIBERIAN FEDERAL DISTRICT', 64307.0: 'RU: FAR EAST FEDERAL DISTRICT', 64308.0: 'RU: NORTH CAUCASIAN FEDERAL DISTRICT', 68801.0: 'RS: SEVER', 68802.0: 'RS: JUG', 68835.0: 'RS: EXTRA-REGION', 70300.0: 'SK: SLOVENSKO', 70335.0: 'SK: EXTRA-REGIO NUTS 1', 70500.0: 'SI: SLOVENIJA', 70535.0: 'SI: EXTRA-REGIO NUTS 1', 72401.0: 'ES: NOROESTE', 72402.0: 'ES: NORESTE', 72403.0: 'ES: COMUNIDAD DE MADRID', 72404.0: 'ES: CENTRO (ES)', 72405.0: 'ES: ESTE', 72406.0: 'ES: SUR', 72407.0: 'ES: CANARIAS', 72435.0: 'ES: EXTRA-REGIO NUTS 1', 75201.0: 'SE: ÖSTRA SVERIGE', 75202.0: 'SE: SÖDRA SVERIGE', 75203.0: 'SE: NORRA SVERIGE', 75235.0: 'SE: EXTRA-REGIO NUTS 1', 75600.0: 'CH: SWITZERLAND', 75635.0: 'CH: EXTRA-REGIO', 80401.0: 'UA: WEST 1', 80402.0: 'UA: WEST 2', 80403.0: 'UA: THE CITY OF KYIV', 80404.0: 'UA: SOUTH', 80405.0: 'UA: NORTH', 80406.0: 'UA: EAST 1', 80407.0: 'UA: EAST 2', 80408.0: 'UA: CENTER', 80700.0: 'MK: MACEDONIA', 80735.0: 'MK: EXTRA-REGION', 82612.0: 'UK - GB-GBN: NORTH EAST (ENGLAND)', 82613.0: 'UK - GB-GBN: NORTH WEST (ENGLAND)', 82614.0: 'UK - GB-GBN: YORKSHIRE AND THE HUMBER', 82615.0: 'UK - GB-GBN: EAST MIDLANDS (ENGLAND)', 82616.0: 'UK - GB-GBN: WEST MIDLANDS (ENGLAND)', 82617.0: 'UK - GB-GBN: EAST OF ENGLAND', 82618.0: 'UK - GB-GBN: LONDON', 82619.0: 'UK - GB-GBN: SOUTH EAST (ENGLAND)', 82620.0: 'UK - GB-GBN: SOUTH WEST (ENGLAND)', 82621.0: 'UK - GB-GBN: WALES', 82622.0: 'UK - GB-GBN: SCOTLAND', 82635.0: 'UK - EXTRA-REGIO', 90923.0: 'UK - GB-NIR: NORTHERN IRELAND'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True59418123
v276_r449v276_rnumericsize of town where interview was conducted Q106 (5 categories){1.0: 'under 5000', 2.0: '5000-20000', 3.0: '20000-100000', 4.0: '100000-500000', 5.0: '500000 and more'}{-4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True534445
v277450v277numericdate of interview (Q107){}{-4.0: 'item not included', -2.0: 'no answer'}True57588951
mm_v277_fu451mm_v277_funumericMATRIX DESIGN EXPERIMENT: date of interview (Q107) (follow-up){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer'}True3376120
v278a452v278anominaltime of interview: start hour (Q108){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5621724
v278b453v278bnominaltime of interview: start minute (Q108){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5621760
v278c_r454v278c_rnumerictime of interview: start (constructed) (Q108){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -2.0: 'no answer'}True562171278
v279a455v279anominaltime of interview: end hour (Q108){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5613825
v279b456v279bnominaltime of interview: end minute (Q108){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5613860
v279c_r457v279c_rnumerictime of interview: end (constructed) (Q108){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -2.0: 'no answer'}True561381295
v279d_r458v279d_rnumerictime of interview: duration in minutes (constructed) (Q109){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -6.0: 'na (survey break-off)', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True55336502
mm_v278a_fu459mm_v278a_funominalMATRIX DESIGN EXPERIMENT: time of interview: start hour (Q108) (follow-up){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable'}False285524
mm_v278b_fu460mm_v278b_funominalMATRIX DESIGN EXPERIMENT: time of interview: start minute (Q108) (follow-up){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable'}False285560
mm_v279a_fu461mm_v279a_funominalMATRIX DESIGN EXPERIMENT: time of interview: end hour (Q108) (follow-up){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer'}False282324
mm_v279b_fu462mm_v279b_funominalMATRIX DESIGN EXPERIMENT: time of interview: end minute (Q108) (follow-up){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer'}False282360
v280463v280numericinterest of respondent during interview (Q109){1.0: 'very interested', 2.0: 'somewhat interested', 3.0: 'not very interested'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True544883
v281a464v281anominallanguage of interview (ISO 639-1 Alpha code) (Q110){'aa': 'Afar', 'ab': 'Abkhazian', 'ae': 'Avestan', 'af': 'Afrikaans', 'ak': 'Akan', 'am': 'Amharic', 'an': 'Aragonese', 'ar': 'Arabic', 'as': 'Assamese', 'av': 'Avaric', 'ay': 'Aymara', 'az': 'Azerbaijani', 'ba': 'Bashkir', 'be': 'Belarusian', 'bg': 'Bulgarian', 'bh': 'Bihari', 'bi': 'Bislama', 'bm': 'Bambara', 'bn': 'Bengali', 'bo': 'Tibetan', 'br': 'Breton', 'bs': 'Bosnian', 'ca': 'Catalan', 'ce': 'Chechen', 'ch': 'Chamorro', 'cnr': 'Montenegrin (ISO 639-2 Alpha code)', 'co': 'Corsican', 'cr': 'Cree', 'cs': 'Czech', 'cu': 'Church Slavic', 'cv': 'Chuvash', 'cy': 'Welsh', 'da': 'Danish', 'de': 'German', 'dv': 'Divehi', 'dz': 'Dzongkha', 'ee': 'Ewe', 'el': 'Greek', 'en': 'English', 'eo': 'Esperanto', 'es': 'Spanish', 'et': 'Estonian', 'eu': 'Basque', 'fa': 'Persian', 'ff': 'Fulah', 'fi': 'Finnish', 'fj': 'Fijian', 'fo': 'Faroese', 'fr': 'French', 'fy': 'Western Frisian', 'ga': 'Irish', 'gd': 'Scottish Gaelic', 'gl': 'Galician', 'gn': 'Guaraní', 'gu': 'Gujarati', 'gv': 'Manx', 'ha': 'Hausa', 'he': 'Hebrew', 'hi': 'Hindi', 'ho': 'Hiri Motu', 'hr': 'Croatian', 'ht': 'Haitian', 'hu': 'Hungarian', 'hy': 'Armenian', 'hz': 'Herero', 'ia': 'Interlingua (International Auxiliary Language Association)', 'id': 'Indonesian', 'ie': 'Interlingue', 'ig': 'Igbo', 'ii': 'Sichuan Yi', 'ik': 'Inupiaq', 'io': 'Ido', 'is': 'Icelandic', 'it': 'Italian', 'iu': 'Inuktitut', 'ja': 'Japanese', 'jv': 'Javanese', 'ka': 'Georgian', 'kg': 'Kongo', 'ki': 'Kikuyu', 'kj': 'Kwanyama', 'kk': 'Kazakh', 'kl': 'Kalaallisut', 'km': 'Khmer', 'kn': 'Kannada', 'ko': 'Korean', 'kr': 'Kanuri', 'ks': 'Kashmiri', 'ku': 'Kurdish', 'kv': 'Komi', 'kw': 'Cornish', 'ky': 'Kirghiz', 'la': 'Latin', 'lb': 'Luxembourgish', 'lg': 'Ganda', 'li': 'Limburgish', 'ln': 'Lingala', 'lo': 'Lao', 'lt': 'Lithuanian', 'lu': 'Luba‐Katanga', 'lv': 'Latvian', 'mg': 'Malagasy', 'mh': 'Marshallese', 'mi': 'Māori', 'mk': 'Macedonian', 'ml': 'Malayalam', 'mn': 'Mongolian', 'mo': 'Moldavian', 'mr': 'Marathi', 'ms': 'Malay', 'mt': 'Maltese', 'my': 'Burmese', 'na': 'Nauru', 'nb': 'Norwegian Bokmål', 'nd': 'North Ndebele', 'ne': 'Nepali', 'ng': 'Ndonga', 'nl': 'Dutch', 'nn': 'Norwegian Nynorsk', 'no': 'Norwegian', 'nr': 'South Ndebele', 'nv': 'Navajo', 'ny': 'Chichewa', 'oc': 'Occitan', 'oj': 'Ojibwa', 'om': 'Oromo', 'or': 'Oriya', 'os': 'Ossetian', 'pa': 'Panjabi', 'pi': 'Pāli', 'pl': 'Polish', 'ps': 'Pashto', 'pt': 'Portuguese', 'qu': 'Quechua', 'rm': 'Raeto‐Romance', 'rn': 'Kirundi', 'ro': 'Romanian', 'ru': 'Russian', 'rw': 'Kinyarwanda', 'sa': 'Sanskrit', 'sc': 'Sardinian', 'sd': 'Sindhi', 'se': 'Northern Sami', 'sg': 'Sango', 'sh': 'Serbo‐Croatian', 'si': 'Sinhalese', 'sk': 'Slovak', 'sl': 'Slovenian', 'sm': 'Samoan', 'sn': 'Shona', 'so': 'Somali', 'sq': 'Albanian', 'sr': 'Serbian', 'ss': 'Swati', 'st': 'Sotho', 'su': 'Sundanese', 'sv': 'Swedish', 'sw': 'Swahili', 'ta': 'Tamil', 'te': 'Telugu', 'tg': 'Tajik', 'th': 'Thai', 'ti': 'Tigrinya', 'tk': 'Turkmen', 'tl': 'Tagalog', 'tn': 'Tswana', 'to': 'Tonga', 'tr': 'Turkish', 'ts': 'Tsonga', 'tt': 'Tatar', 'tw': 'Twi', 'ty': 'Tahitian', 'ug': 'Uighur', 'uk': 'Ukrainian', 'ur': 'Urdu', 'uz': 'Uzbek', 've': 'Venda', 'vi': 'Vietnamese', 'vo': 'Volapük', 'wa': 'Walloon', 'wo': 'Wolof', 'xh': 'Xhosa', 'yi': 'Yiddish', 'yo': 'Yoruba', 'za': 'Zhuang', 'zh': 'Chinese', 'zu': 'Zulu'}{'-1': 'dont know or no answer', '-3': 'not applicable'}True5943036
v281a_r465v281a_rnumericlanguage of interview (WVS/EVS numeric 3-digit) (Q110){2.0: 'Basque', 3.0: 'Galician', 13.0: 'Albanian', 25.0: 'Armenian', 32.0: 'Danish', 40.0: 'Azerbaijani', 65.0: 'Bosnian', 69.0: 'Bulgarian', 72.0: 'Icelandic', 75.0: 'Catalan', 90.0: 'Croatian', 98.0: 'Lithuanian', 101.0: 'Chinese', 120.0: 'Dutch', 128.0: 'English', 132.0: 'Estonian', 141.0: 'Finnish', 144.0: 'French', 157.0: 'Georgian', 158.0: 'German', 166.0: 'Greek', 184.0: 'Hungarian', 186.0: 'Montenegrin', 200.0: 'Norwegian', 207.0: 'Italian', 256.0: 'Latvian', 279.0: 'Macedonian', 363.0: 'Polish', 364.0: 'Portuguese', 377.0: 'Romanian', 380.0: 'Russian', 397.0: 'Serbian', 415.0: 'Slovak', 416.0: 'Slovenian', 426.0: 'Spanish', 435.0: 'Swedish', 475.0: 'Ukrainian', 600.0: 'Czech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non respons', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5943036
v282466v282numericinterviewer number (Q111){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -5.0: 'other missing', -4.0: 'item not included'}True510921989
gweight467gweightnumericCalibration weights{}{}True594386924
gweight_no_edu468gweight_no_edunumericCalibration weights: without educational level{}{}True594382849
dweight469dweightnumericDesign Weight{}{-4.0: 'item not included'}True102462423
pweight470pweightnumericPopulation size weight{}{}True5943836
age_r3_weight471age_r3_weightnumericCALIBRATION variable: Age in categories{1.0: '18-24', 2.0: '25-34', 3.0: '35-44', 4.0: '45-54', 5.0: '55-64', 6.0: '65-74', 7.0: '75+'}{}True594387
v225_weight472v225_weightnumericCALIBRATION variable: Gender{1.0: 'Male', 2.0: 'Female'}{}True594382
v243_r_weight473v243_r_weightnumericCALIBRATION variable: Educational level{1.0: 'lower', 2.0: 'medium', 3.0: 'higher'}{}True594383
\n" ], "text/plain": [ "" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(complete_survey.variable_info())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We can see some important information about the 474 variables contained in this survey. Every variable has an `id`, a `name`, a `type` and lists of `valid` and `invalid values`. \n", "The column `is_usable` indicates if the variable can be used for an automatic analysis and the calculation of an interpretable result. Depending on a variable's type, there are different criteria that make a variable usable or unusable for the automatic system: \n", "Numeric variables are always usable. Nominal and ordinal variables need to provide information about all valid and invalid values. \n", "Variables of unknown type are not usable, as well as variables that take less than two different values on the whole dataset.\n", "\n", "(Please note: If you use slightly lower level functionality of the library, you can use all variables and do whatever you want. But you have to \"manually\" take care of the feature creation, and you're on your own to assemble all information to have an interpretable result.)\n", "\n", "The loaded data contains a lot of administrative variables that are not interesting for a tangle analysis. We are mainly interested in the questions the respondents were actually asked. Nearly all variables corresponding to the 'real' questions have a name starting with a prefix \"v\" followed by a number. We want to extract only these columns.\n", "\n", "Please note that there are exceptions to this rule and our simple heuristic will remove some special variables and some derived variables. For the purpose of this notebook, we just don't care...\n", "\n", "We can extract a subset of the columns using the function `select_questions`. There are various ways to specify the selected columns, please consult the documentation for a detailed description. In the following cell, we use a small `lambda` expression to extract variables with a name satisfying the heuristic criterion described above:" ] }, { "cell_type": "code", "execution_count": 6, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:15.109959Z", "start_time": "2024-02-05T11:58:14.755602Z" } }, "outputs": [], "source": [ "questions = complete_survey.select_questions(lambda x:x.name[0] == 'v' and x.name[1:].isnumeric(), suppress_check_var_warning=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's look at the *variable info*, again:" ] }, { "cell_type": "code", "execution_count": 7, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:16.227985Z", "start_time": "2024-02-05T11:58:15.110387Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 idnametypelabelvalid_valuesinvalid_valuesis_usablenum_valid_answersnum_unique_answers
v10v1numerichow important in your life: work (Q1A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587274
v21v2numerichow important in your life: family (Q1B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True592214
v32v3numerichow important in your life: friends and acquaintances (Q1C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True592154
v43v4numerichow important in your life: leisure time (Q1D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590324
v54v5numerichow important in your life: politics (Q1E){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587644
v65v6numerichow important in your life: religion (Q1F){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586224
v76v7numerictaking all things together how happy are you (Q2){1.0: 'very happy', 2.0: 'quite happy', 3.0: 'not very happy', 4.0: 'not at all happy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587074
v87v8numericdescribe your state of health these days (Q3){1.0: 'very good', 2.0: 'good', 3.0: 'fair', 4.0: 'poor', 5.0: 'very poor'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593045
v98v9numericdo you belong to: religious organization (Q4A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583332
v109v10numericdo you belong to: cultural activities (Q4B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582842
v1110v11numericdo you belong to: trade unions (Q4C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582692
v1211v12numericdo you belong to: political parties/groups (Q4D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582432
v1312v13numericdo you belong to: environment, ecology, animal rights (Q4E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582712
v1413v14numericdo you belong to: professional associations (Q4F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582232
v1514v15numericdo you belong to: sports/recreation (Q4G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583742
v1615v16numericdo you belong to: charitable/humanitarian organization (Q4H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582592
v1716v17numericdo you belong to: consumer organization (Q4I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581812
v1817v18numericdo you belong to: self-help group, mutual aid group (Q4J){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581762
v1918v19numericdo you belong to: other groups (Q4K){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True577282
v2019v20numericdo you belong to: none (spontaneous) (Q4){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True531852
v2120v21numericdid you do voluntary work in the last 6 months (Q5){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589862
v2221v22numericdont like as neighbours: people of different race (Q6A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570842
v2322v23numericdont like as neighbours: heavy drinkers (Q6B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580752
v2423v24numericdont like as neighbours: immigrants/foreign workers (Q6C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True565202
v2524v25numericdont like as neighbours: drug addicts (Q6D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582472
v2625v26numericdont like as neighbours: homosexuals (Q6E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575132
v2726v27numericdont like as neighbours: Christians (optional in countries with Christian majority) (Q6F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True490032
v2827v28numericdont like as neighbours: Muslims (optional in countries with Muslim majority) (Q6G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True555872
v2928v29numericdont like as neighbours: Jews (optional) (Q6H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570612
v3029v30numericdont like as neighbours: Gypsies (optional) (Q6I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572882
v3130v31numericpeople can be trusted/can't be too careful (Q7){1.0: 'most people can be trusted', 2.0: 'can not be too careful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580832
v3231v32numerichow much you trust: your family (Q8A){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591784
v3332v33numerichow much you trust: people in your neighborhood (Q8B){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586164
v3433v34numerichow much you trust: people you know personally (Q8C){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589814
v3534v35numerichow much you trust: people you meet for the first time (Q8D){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579694
v3635v36numerichow much you trust: people of another religion (Q8E){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True547854
v3736v37numerichow much you trust: people of another nationality (Q8F){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True550874
v3837v38numerichow much control over your life (Q9){1.0: 'none at all', 10.0: 'a great deal'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5855010
v3938v39numerichow satisfied are you with your life (Q10){1.0: 'dissatisfied', 10.0: 'satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5912210
v4039v40numericimportant in a job: good pay (Q11A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587402
v4140v41numericimportant in a job: good hours (Q11B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585382
v4241v42numericimportant in a job: opportunity to use initiative (Q11C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579022
v4342v43numericimportant in a job: generous holidays (Q11D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580072
v4443v44numericimportant in a job: achieving something (Q11E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582182
v4544v45numericimportant in a job: responsible job (Q11F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579652
v4645v46numericjob needed to develop talents (Q12A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587775
v4746v47numerichumiliating receiving money without working (Q12B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585155
v4847v48numericpeople turn lazy not working (Q12C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586875
v4948v49numericwork is a duty towards society (Q12D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587145
v5049v50numericwork comes always first (Q12E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588205
v5150v51numericdo you belong to a religious denomination (Q13){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589842
v5251v52nominalwhich religious denomination do you belong to (Q13a) (harmonized){1.0: 'Roman catholic', 2.0: 'Protestant', 3.0: 'Free church/Non-conformist/Evangelical', 4.0: 'Jew', 5.0: 'Muslim', 6.0: 'Hindu', 7.0: 'Buddhist', 8.0: 'Orthodox', 9.0: 'Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True410379
v5352v53numericdid you belong to a religious denomination (Q14){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True189192
v5453v54numerichow often attend religious services (Q15){1.0: 'more than once week', 2.0: 'once a week', 3.0: 'once a month', 4.0: 'only on specific holy days', 5.0: 'once a year', 6.0: 'less often', 7.0: 'never, practically never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588517
v5554v55numerichow often attend religious services 12 years old (Q16){1.0: 'more than once week', 2.0: 'once a week', 3.0: 'once a month', 4.0: 'only on specific holy days', 5.0: 'once a year', 6.0: 'less often', 7.0: 'never, practically never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575517
v5655v56numericare you a religious person (Q17){1.0: 'a religious person', 2.0: 'not a religious person', 3.0: 'a convinced atheist'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570823
v5756v57numericdo you believe in: God (Q18A){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558942
v5857v58numericdo you believe in: life after death (Q18B){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True511862
v5958v59numericdo you believe in: hell (Q18C){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True518682
v6059v60numericdo you believe in: heaven (Q18D){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True518992
v6160v61numericdo you believe in: re-incarnation (Q19){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True522992
v6261v62numericwhich statement closest to your beliefs (Q20){1.0: 'personal God', 2.0: 'spirit or life force', 3.0: \"don't know what to think\", 4.0: 'no spirit, God or life force'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574974
v6362v63numerichow important is God in your life (Q21){1.0: 'not at all important', 10.0: 'very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5794710
v6463v64numerichow often do you pray outside religious services (Q22){1.0: 'every day', 2.0: 'more than once week', 3.0: 'once a week', 4.0: 'at least once a month', 5.0: 'several times a year', 6.0: 'less often', 7.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True578827
v6564v65numericimportant in marriage: faithfulness (Q23A){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591383
v6665v66numericimportant in marriage: adequate income (Q23B){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590783
v6766v67numericimportant in marriage: good housing (Q23C){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591213
v6867v68numericimportant in marriage: share household chores (Q23D){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588873
v6968v69numericimportant in marriage: children (Q23E){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586763
v7069v70numericimportant in marriage: time for friends and personal hobbies (Q23F){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588143
v7170v71numericmarriage is outdated (Q24){1.0: 'agree', 2.0: 'disagree'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573492
v7271v72numericchild suffers with working mother (Q25A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580804
v7372v73numericwomen really want home and children (Q25B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572414
v7473v74numericfamily life suffers when woman has full-time job (Q25C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580554
v7574v75numericman's job is to earn money; woman's job is to look after home and family (Q25D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584664
v7675v76numericmen make better political leaders than women (Q25E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True569944
v7776v77numericuniversity education more important for a boy than for a girl (Q25F){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581834
v7877v78numericmen make better business executives than women (Q25G){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True571584
v7978v79numericone of main goals in life has been to make my parents proud (Q25H){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True566224
v8079v80numericjobs are scarce: giving...(nation) priority (Q26A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586335
v8180v81numericjobs are scarce: giving men priority (Q26B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586955
v8281v82numerichomosexual couples - as good parents as other couples (Q27A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True547645
v8382v83numericduty towards society to have children (Q27B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584915
v8483v84numericIt is childs duty to provide long-term care for parents (Q27C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586785
v8584v85numericlearn children at home: good manners (Q28A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587982
v8685v86numericlearn children at home: independence (Q28B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586272
v8786v87numericlearn children at home: hard work (Q28C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587082
v8887v88numericlearn children at home: feeling of responsibility (Q28D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587292
v8988v89numericlearn children at home: imagination (Q28E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581602
v9089v90numericlearn children at home: tolerance and respect (Q28F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585602
v9190v91numericlearn children at home: thrift, saving money and things (Q28G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584322
v9291v92numericlearn children at home: determination, perseverance (Q28H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583762
v9392v93numericlearn children at home: religious faith (Q28I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581242
v9493v94numericlearn children at home: unselfishness (Q28J){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581902
v9594v95numericlearn children at home: obedience (Q28K){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581892
v9695v96numericlearn children at home: none (spontaneous) (Q28){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True536712
v9796v97numerichow interested are you in politics (Q29){1.0: 'very interested', 2.0: 'somewhat interested', 3.0: 'not very interested', 4.0: 'not at all interested'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591324
v9897v98numericpolitical action: signing a petition (Q30A){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570023
v9998v99numericpolitical action: joining in boycotts (Q30B){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558753
v10099v100numericpolitical action: attending lawful demonstrations (Q30C){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True566223
v101100v101numericpolitical action: joining unofficial strikes (Q30D){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True554743
v102101v102numericpolitical view: left-right (Q31){1.0: 'the left', 10.0: 'the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4772310
v103102v103numericindividual vs. state responsibility for providing (Q32A){1.0: 'individual responsibility', 10.0: 'state responsibility'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5821410
v104103v104numerictake any job vs. right to refuse job when unemployed (Q32B){1.0: 'unemployed take any job', 10.0: 'unemployed right to refuse a job'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5806610
v105104v105numericcompetition is good vs. harmful (Q32C){1.0: 'competition good', 10.0: 'competition harmful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5751610
v106105v106numericequalize incomes vs. incentives for individual effort (Q32D){1.0: 'incomes more equal', 10.0: 'incentives to individual efforts'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5810310
v107106v107numericprivate vs. government ownership business (Q32E){1.0: 'private ownership increased', 10.0: 'government ownership increased'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5499110
v108107v108numericaims of this country: most important (Q33){1.0: 'high level of economic growth', 2.0: 'strong defense forces', 3.0: 'more say at their jobs/ in communities', 4.0: 'make cities/countryside more beautiful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575034
v109108v109numericaims of this country: 2nd most important (Q33a){1.0: 'high level of economic growth', 2.0: 'strong defense forces', 3.0: 'more say at their jobs/ in communities', 4.0: 'make cities/countryside more beautiful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True563424
v110109v110numericaims of respondent: most important (Q34){1.0: 'maintaining order in nation', 2.0: 'more say in important government decisions', 3.0: 'fighting rising prices', 4.0: 'protect freedom of speech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580664
v111110v111numericaims of respondent: 2nd most important (Q35){1.0: 'maintaining order in nation', 2.0: 'more say in important government decisions', 3.0: 'fighting rising prices', 4.0: 'protect freedom of speech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True571784
v112111v112numericare you willing to fight for country (Q36){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True527182
v113112v113numericgood/bad: decrease work importance (Q37A){1.0: 'good', 2.0: 'bad', 3.0: \"don't mind\"}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True560283
v114113v114numericgood/bad: greater respect for authority (Q37B){1.0: 'good', 2.0: 'bad', 3.0: \"don't mind\"}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True552803
v115114v115numerichow much confidence in: church (Q38A){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574554
v116115v116numerichow much confidence in: armed forces (Q38B){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True560064
v117116v117numerichow much confidence in: education system (Q38C){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581594
v118117v118numerichow much confidence in: the press (Q38D){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580724
v119118v119numerichow much confidence in: trade unions (Q38E){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True541914
v120119v120numerichow much confidence in: the police (Q38F){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584954
v121120v121numerichow much confidence in: parliament (Q38G){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573664
v122121v122numerichow much confidence in: civil service (Q38H){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572284
v123122v123numerichow much confidence in: social security system (Q38I){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572944
v124123v124numerichow much confidence in: European Union (Q38J){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True557054
v125124v125numerichow much confidence in: United Nations Organization (Q38K){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True541684
v126125v126numerichow much confidence in: health care system (Q38L){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585854
v127126v127numerichow much confidence in: justice system (Q38M){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570924
v128127v128numerichow much confidence in: major companies (Q38N){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True546454
v129128v129numerichow much confidence in: environmental organizations (Q38O){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True555824
v130129v130numerichow much confidence in: political parties (Q38P){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True568844
v131130v131numerichow much confidence in: government (Q38Q){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575064
v132131v132numerichow much confidence in: social media (Q38R){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True543414
v133132v133numericdemocracy: governments tax the rich and subsidize the poor (Q39A){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5298011
v134133v134numericdemocracy: religious authorities interpret the laws (Q39B){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5189211
v135134v135numericdemocracy: people choose their leaders in free elections (Q39C){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5401511
v136135v136numericdemocracy: people receive state aid for unemployment (Q39D){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5397711
v137136v137numericdemocracy: the army takes over when government is incompetent (Q39E){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5189611
v138137v138numericdemocracy: civil rights protect people from state oppression (Q39F){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5250411
v139138v139numericdemocracy: the state makes people’s incomes equal (Q39G){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5305011
v140139v140numericdemocracy: people obey their rulers (Q39H){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5306811
v141140v141numericdemocracy: women have the same rights as men (Q39I){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5442611
v142141v142numericimportance of democracy (Q40){1.0: 'not at all important', 10.0: 'absolutely important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5812510
v143142v143numericdemocracy in own country (Q41){1.0: 'not at all democratic', 10.0: 'completely democratic'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5721410
v144143v144numericsatisfaction political system (Q42){1.0: 'not satisfied at all', 10.0: 'completely satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5753010
v145144v145numericpolitical system: strong leader (Q43A){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True553744
v146145v146numericpolitical system: experts making decisions (Q43B){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True543134
v147146v147numericpolitical system: the army ruling (Q43C){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True554094
v148147v148numericpolitical system: democratic (Q43D){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True562454
v149148v149numericdo you justify: claiming state benefits (Q44A){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5824010
v150149v150numericdo you justify: cheating on tax (Q44B){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5851110
v151150v151numericdo you justify: taking soft drugs (Q44C){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5844210
v152151v152numericdo you justify: accepting a bribe (Q44D){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5872310
v153152v153numericdo you justify: homosexuality (Q44E){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5695210
v154153v154numericdo you justify: abortion (Q44F){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5727710
v155154v155numericdo you justify: divorce (Q44G){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5790310
v156155v156numericdo you justify: euthanasia (Q44H){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5618510
v157156v157numericdo you justify: suicide (Q44I){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5670510
v158157v158numericdo you justify: having casual sex (Q44J){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5703310
v159158v159numericdo you justify: avoiding a fare on public transport (Q44K){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5855910
v160159v160numericdo you justify: prostitution (Q44L){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5770910
v161160v161numericdo you justify: artificial insemination or in-vitro fertilization (Q44M){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5680010
v162161v162numericdo you justify: political violence (Q44N){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5800910
v163162v163numericdo you justify: death penalty (Q44O){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5712310
v164163v164numerichow close do you feel: to own town/city (Q45A){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589424
v165164v165numerichow close do you feel: to your [county, region, district] (Q45B){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587864
v166165v166numerichow close do you feel: to [country] (Q45C){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588574
v167166v167numerichow close do you feel: to [continent] (Q45D){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581104
v168167v168numerichow close do you feel: to world (Q45E){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573934
v169168v169numericdo you have... [country's] nationality (Q46){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593182
v170169v170numerichow proud are you to be a ... [country] citizen (Q47){1.0: 'very proud', 2.0: 'quite proud', 3.0: 'not very proud', 4.0: 'not at all proud'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558854
v171170v171numericvote in elections: local level (Q48A){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True575253
v172171v172numericvote in elections: national level (Q48B){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True569523
v173172v173numericvote in elections: European level (Q48C){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True342423
v176173v176numerichow often in country's elections: votes are counted fairly (Q50A){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True522704
v177174v177numerichow often in country's elections: opposition candidates are prevented from running (Q50B){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True477404
v178175v178numerichow often in country's elections: TV news favors the governing party (Q50C){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True510814
v179176v179numerichow often in country's elections: voters are bribed (Q50D){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True498974
v180177v180numerichow often in country's elections: journalists provide fair coverage of elections (Q50E){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True516854
v181178v181numerichow often in country's elections: election officials are fair (Q50F){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True506644
v182179v182numerichow often in country's elections: rich people buy elections (Q50G){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True481264
v183180v183numerichow often in country's elections: voters are threatened with violence at the polls (Q50H){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True493414
v184181v184numericimmigrants: impact on the development of [your country] (Q51){1.0: 'very bad', 2.0: 'quite bad', 3.0: 'neither good, nor bad', 4.0: 'quite good', 5.0: 'very good'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True569585
v185182v185numericimmigrants take away jobs from [nationality] (Q52A){1.0: 'take away', 10.0: 'do not take away'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5738910
v186183v186numericimmigrants increase crime problems (Q52B){1.0: 'make it worse', 10.0: 'do not make it worse'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5667910
v187184v187numericimmigrants are a strain on welfare system (Q52C){1.0: 'are a strain', 10.0: 'are not a strain'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5657810
v188185v188numericbetter if immigrants maintain/not maintain own customs (Q52D){1.0: 'maintain distinct customs and traditions', 10.0: 'do not maintain distinct customs and traditions'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5570610
v189186v189numericimportant: to have been born in [country] (Q53A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588504
v190187v190numericimportant: to respect [country nationality] political institutions and laws (Q53B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588504
v191188v191numericimportant: to have [country nationality] ancestry (Q53C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587284
v192189v192numericimportant: to be able to speak [national language] (Q53D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590344
v193190v193numericimportant: to share [national] culture (Q53E){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588114
v194191v194numericimportant: to be born in Europe (Q54A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True577414
v195192v195numericimportant: to have European ancestry (Q54B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575624
v196193v196numericimportant: to be a Christian (Q54C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573024
v197194v197numericimportant: to share European culture (Q54D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True576144
v198195v198numericEuropean Union enlargement (Q55){1.0: 'should go further', 10.0: 'has gone too far'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5413910
v199196v199numericenvironment: giving part of income (Q56A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True576645
v200197v200numericenvironment: too difficult for me to do much (Q56B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580125
v201198v201numericenvironment: there are more important things to do (Q56C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580915
v202199v202numericenvironment: no point unless others do the same (Q56D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580425
v203200v203numericenvironment: environmental threats are exaggerated (Q56E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True563485
v204201v204numericprotecting environment vs. economic growth (Q57){1.0: 'protecting the environment priority, even if slower economic growth and loss of jobs', 2.0: 'economic growth and creating jobs priority, even if environment suffers'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 3.0: 'other answer (code if volunteered only!)'}True522242
v205202v205numericgovernment: public area under video surveillance (Q58A){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579234
v206203v206numericgovernment: monitor all information exchanged on the internet (Q58B){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570224
v207204v207numericgovernment: collect information about anyone without their knowledge (Q58C){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574704
v208205v208numerichow often do you follow politics: on television (Q59A){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591285
v209206v209numerichow often do you follow politics: on the radio (Q59B){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589245
v210207v210numerichow often do you follow politics: in the daily papers (Q59C){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589295
v211208v211numerichow often do you follow politics: on social media (Q59D){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586475
v212209v212numericare you concerned with: people neighbourhood (Q60A){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588835
v213210v213numericare you concerned with: people own region (Q60B){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587815
v214211v214numericare you concerned with: fellow countrymen (Q60C){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587045
v215212v215numericare you concerned with: Europeans (Q60D){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582125
v216213v216numericare you concerned with: humankind (Q60E){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581445
v217214v217numericare you concerned with: elderly people (Q61A){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590345
v218215v218numericare you concerned with: unemployed people (Q61B){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587975
v219216v219numericare you concerned with: immigrants (Q61C){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583795
v220217v220numericare you concerned with: sick and disabled (Q61D){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589125
v221218v221numericimportant: eliminating income inequalities (Q62A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573204
v222219v222numericimportant: basic needs for all (Q62B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582474
v223220v223numericimportant: recognizing people on merits (Q62C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True578664
v224221v224numericimportant: protecting against terrorism (Q62D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582154
v225222v225numericsex respondent (Q63){1.0: 'male', 2.0: 'female'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True594122
v226223v226numericyear of birth respondent (Q64){1937.0: '1937 and before'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5911367
v227224v227numericrespondent born in [country] (Q65){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593672
v229225v229numericyear in which respondent came to live in [country] (Q67){1941.0: '1941 and before'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True411679
v230226v230numericfather born in [country] (Q68){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590422
v232227v232numericmother born in [country] (Q70){1.0: 'yes', 2.0: 'no'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True592182
v234228v234numericcurrent legal marital status respondent (Q72){1.0: 'married', 2.0: 'registered partnership', 3.0: 'widowed', 4.0: 'divorced', 5.0: 'separated', 6.0: 'never married and never registered partnership'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590206
v235229v235numericlived with partner before marriage (Q73){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True439872
v236230v236numericliving with partner (Q74){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True273012
v237231v237numerichaving steady relationship (Q75){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True198882
v238232v238numericdo you live with your parents/parents in law (Q76){1.0: 'no', 2.0: 'yes, own parent(s)', 3.0: 'yes, parent(s) in law', 4.0: 'yes, both own parent(s) and parent(s) in law'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590014
v240233v240numericnumber of people in household (Q78){1.0: 'I live alone', 6.0: '6 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586916
v241234v241numericage of youngest person in household (Q79){80.0: '80 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4598381
v242235v242numericage completed education respondent (Q80){7.0: '7 and younger', 70.0: '70 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 0.0: 'no formal education'}True5583464
v244236v244numericpaid employment/no paid employment (Q82){1.0: '30h a week or more', 2.0: 'less then 30h a week', 3.0: 'self employed', 4.0: 'military service', 5.0: 'retired/pensioned', 6.0: 'homemaker not otherwise employed', 7.0: 'student', 8.0: 'unemployed', 9.0: 'disabled', 10.0: 'other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5902710
v245237v245numericemployment/self-employment: last job (Q83){1.0: 'employed', 2.0: 'self-employed'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'never had a paid job'}True219032
v247238v247numericrespondent has/had how many employees (Q85){1.0: 'none', 2.0: '1-9', 3.0: '10-24', 4.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True54674
v248239v248numericdo/did you supervise someone (Q86){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True460982
v249240v249numericemployment sector you work/-ed for (Q87){1.0: 'government or public institution', 2.0: 'private business or industry', 3.0: 'private non-profit organization'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True434423
v250241v250numericpartner/spouse born in [country] (Q88){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True359142
v253242v253numericpaid employment/no paid employment spouse/partner (Q90){1.0: '30h a week or more', 2.0: 'less then 30h a week', 3.0: 'self employed', 4.0: 'military service', 5.0: 'retired/pensioned', 6.0: 'homemaker not otherwise employed', 7.0: 'student', 8.0: 'unemployed', 9.0: 'disabled', 10.0: 'other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3575210
v254243v254numericemployment/self-employment (spouse/partner): last job (Q91){1.0: 'employed', 2.0: 'self-employed'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'never had a paid job'}True115432
v256244v256numericspouse/partner has/had how many employees (Q93){1.0: 'none', 2.0: '1-9', 3.0: '10-24', 4.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True35224
v257245v257numericdoes/did spouse/partner supervise someone (Q94){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True278712
v258246v258numerichow many people does she/he supervise (Q95){1.0: '1-9', 2.0: '10-24', 3.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True65623
v259247v259numericrespondent experienced unemployment longer than 3 months (Q96){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580242
v260248v260numericdependency on social security during last 5 years respondent (Q97){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585612
v261249v261nominalhouseholds total net income (Q98) (standardized){1.0: 'A - 1st decile', 2.0: 'B - 2nd decile', 3.0: 'C - 3rd decile', 4.0: 'D - 4th decile', 5.0: 'E - 5th decile', 6.0: 'F - 6th decile', 7.0: 'G - 7th decile', 8.0: 'H - 8th decile', 9.0: 'I - 9th decile', 10.0: 'J - 10th decile'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5069810
v264250v264numericat age 14, was father employed (Q101){1.0: 'yes employed', 2.0: 'yes self employed', 3.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True550493
v265251v265numericat age 14, was mother employed (Q102){1.0: 'yes employed', 2.0: 'yes self employed', 3.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True569423
v266252v266numericat age 14, occupational group of your parent (main earner) (Q103){1.0: 'professional and technical (for example: doctor, teacher, engineer, artist, accountant, nurse)', 2.0: 'higher administrative (for example: banker, executive in big business, high government official, union official)', 3.0: 'clerical (for example: secretary, clerk, office manager, civil servant, bookkeeper)', 4.0: 'sales (for example: sales manager, shop owner, shop assistant, insurance agent, buyer)', 5.0: 'service (for example: restaurant owner, police officer, waitress, barber, caretaker)', 6.0: 'skilled worker (for example: foreman, motor mechanic, printer, seamstress, tool and die maker, electrician)', 7.0: 'semi-skilled worker (for example: bricklayer, bus driver, cannery worker, carpenter, sheet metal worker, baker)', 8.0: 'unskilled worker (for example: laborer, porter, unskilled factory worker, cleaner)', 9.0: 'farm worker (for example: farm laborer, tractor driver)', 10.0: 'farm proprietor, farm manager'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 66.0: 'does not apply to me (spontaneous)'}True5534410
v267253v267numericat age 14, mother liked to read books (Q104A){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True563984
v268254v268numericat age 14, discussed politics with mother (Q104B){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True571424
v269255v269numericat age 14, mother liked to follow the news (Q104C){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True563124
v270256v270numericat age 14, parent(s) had problems making ends meet (Q104D){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True569774
v271257v271numericat age 14, father liked to read books (Q104E){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True543764
v272258v272numericat age 14, discussed politics with father (Q104F){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True552194
v273259v273numericat age 14, father liked to follow the news (Q104G){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True546354
v274260v274numericat age 14, parent(s) had problems replacing broken things (Q104H){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True557924
v277261v277numericdate of interview (Q107){}{-4.0: 'item not included', -2.0: 'no answer'}True57588951
v280262v280numericinterest of respondent during interview (Q109){1.0: 'very interested', 2.0: 'somewhat interested', 3.0: 'not very interested'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True544883
v282263v282numericinterviewer number (Q111){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -5.0: 'other missing', -4.0: 'item not included'}True510921989
\n" ], "text/plain": [ "" ] }, "execution_count": 7, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(questions.variable_info())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We see that the subset of the complete survey does not contain any administrative columns anymore, just as desired. The type of most variables is `numeric`. The reason is that a lot of SPSS users often label ordinal variables as `scale` type variables, because it is the type providing most freedom in SPSS. From a statistical point of view, this might often be correct. The tangle library interprets scale variables as numeric - that's the best we can do without further knowledge about the variables.\n", "\n", "If one investigates the variables in more detail, one can see that nearly all variables labeled as numeric are actually of ordinal type. Therefore, we change all numeric types to `'ordinal'` and correct the few exceptions afterward:" ] }, { "cell_type": "code", "execution_count": 8, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:16.764634Z", "start_time": "2024-02-05T11:58:16.210438Z" } }, "outputs": [], "source": [ "questions.set_variable_types('ordinal', lambda x: x.type=='numeric' and len(x.valid_values)>0)\n", "questions.set_variable_types('numeric', ['v226', 'v229', 'v241', 'v242'])\n", "questions.set_variable_types('nominal', [f'v{i}' for i in range(108,115)] + ['v234','v266','v253','v249','v244','v232'])" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Internally, the variable info is checked for usability every time we change something.\n", "Let's see how the variable info looks now. We only show variables that are still marked as not usable. \n", "Like above, this is done by specifying a `ColumnSelection`, again by a small `lambda` expression:" ] }, { "cell_type": "code", "execution_count": 9, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:17.025610Z", "start_time": "2024-02-05T11:58:16.764772Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 idnametypelabelvalid_valuesinvalid_valuesis_usablenum_valid_answersnum_unique_answers
v380v38ordinalhow much control over your life (Q9){1.0: 'none at all', 10.0: 'a great deal'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5855010
v391v39ordinalhow satisfied are you with your life (Q10){1.0: 'dissatisfied', 10.0: 'satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5912210
v632v63ordinalhow important is God in your life (Q21){1.0: 'not at all important', 10.0: 'very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5794710
v1023v102ordinalpolitical view: left-right (Q31){1.0: 'the left', 10.0: 'the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False4772310
v1034v103ordinalindividual vs. state responsibility for providing (Q32A){1.0: 'individual responsibility', 10.0: 'state responsibility'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5821410
v1045v104ordinaltake any job vs. right to refuse job when unemployed (Q32B){1.0: 'unemployed take any job', 10.0: 'unemployed right to refuse a job'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5806610
v1056v105ordinalcompetition is good vs. harmful (Q32C){1.0: 'competition good', 10.0: 'competition harmful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5751610
v1067v106ordinalequalize incomes vs. incentives for individual effort (Q32D){1.0: 'incomes more equal', 10.0: 'incentives to individual efforts'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5810310
v1078v107ordinalprivate vs. government ownership business (Q32E){1.0: 'private ownership increased', 10.0: 'government ownership increased'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5499110
v1339v133ordinaldemocracy: governments tax the rich and subsidize the poor (Q39A){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5298011
v13410v134ordinaldemocracy: religious authorities interpret the laws (Q39B){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5189211
v13511v135ordinaldemocracy: people choose their leaders in free elections (Q39C){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5401511
v13612v136ordinaldemocracy: people receive state aid for unemployment (Q39D){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5397711
v13713v137ordinaldemocracy: the army takes over when government is incompetent (Q39E){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5189611
v13814v138ordinaldemocracy: civil rights protect people from state oppression (Q39F){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5250411
v13915v139ordinaldemocracy: the state makes people’s incomes equal (Q39G){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5305011
v14016v140ordinaldemocracy: people obey their rulers (Q39H){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5306811
v14117v141ordinaldemocracy: women have the same rights as men (Q39I){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5442611
v14218v142ordinalimportance of democracy (Q40){1.0: 'not at all important', 10.0: 'absolutely important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5812510
v14319v143ordinaldemocracy in own country (Q41){1.0: 'not at all democratic', 10.0: 'completely democratic'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5721410
v14420v144ordinalsatisfaction political system (Q42){1.0: 'not satisfied at all', 10.0: 'completely satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5753010
v14921v149ordinaldo you justify: claiming state benefits (Q44A){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5824010
v15022v150ordinaldo you justify: cheating on tax (Q44B){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5851110
v15123v151ordinaldo you justify: taking soft drugs (Q44C){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5844210
v15224v152ordinaldo you justify: accepting a bribe (Q44D){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5872310
v15325v153ordinaldo you justify: homosexuality (Q44E){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5695210
v15426v154ordinaldo you justify: abortion (Q44F){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5727710
v15527v155ordinaldo you justify: divorce (Q44G){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5790310
v15628v156ordinaldo you justify: euthanasia (Q44H){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5618510
v15729v157ordinaldo you justify: suicide (Q44I){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5670510
v15830v158ordinaldo you justify: having casual sex (Q44J){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5703310
v15931v159ordinaldo you justify: avoiding a fare on public transport (Q44K){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5855910
v16032v160ordinaldo you justify: prostitution (Q44L){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5770910
v16133v161ordinaldo you justify: artificial insemination or in-vitro fertilization (Q44M){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5680010
v16234v162ordinaldo you justify: political violence (Q44N){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5800910
v16335v163ordinaldo you justify: death penalty (Q44O){1.0: 'never', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5712310
v18536v185ordinalimmigrants take away jobs from [nationality] (Q52A){1.0: 'take away', 10.0: 'do not take away'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5738910
v18637v186ordinalimmigrants increase crime problems (Q52B){1.0: 'make it worse', 10.0: 'do not make it worse'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5667910
v18738v187ordinalimmigrants are a strain on welfare system (Q52C){1.0: 'are a strain', 10.0: 'are not a strain'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5657810
v18839v188ordinalbetter if immigrants maintain/not maintain own customs (Q52D){1.0: 'maintain distinct customs and traditions', 10.0: 'do not maintain distinct customs and traditions'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5570610
v19840v198ordinalEuropean Union enlargement (Q55){1.0: 'should go further', 10.0: 'has gone too far'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False5413910
v24041v240ordinalnumber of people in household (Q78){1.0: 'I live alone', 6.0: '6 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}False586916
\n" ], "text/plain": [ "" ] }, "execution_count": 9, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(questions.variable_info(lambda v: not v.is_usable))" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We observe another small problem seen often in the metadata of survey data: Many ordinal variables only have labels for the minimal and the maximal answer. This is perfectly fine for a manual survey analysis, but the tangle analysis likes to know the complete list of possible values in these cases. Fortunately, this can be corrected very easily: We simply infer the lists from the data:" ] }, { "cell_type": "code", "execution_count": 11, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:17.286447Z", "start_time": "2024-02-05T11:58:17.022572Z" } }, "outputs": [], "source": [ "questions.guess_variable_value_lists(lambda v: not v.is_usable)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Our survey contains a bunch of binary variables. Binary variables are a special case: obviously they are nominal variables, but sometimes it makes sense to interpret them as ordinal variables. For aesthetic reasons, let's change their types to 'binary' (internally it does not make a difference if they are typed as nominal, ordinal or binary):" ] }, { "cell_type": "code", "execution_count": 12, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:17.498404Z", "start_time": "2024-02-05T11:58:17.285353Z" } }, "outputs": [], "source": [ "questions.set_variable_types('binary', lambda v: len(v.valid_values)==2)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Ok, let's have a final look at the survey's fully configured variable info:" ] }, { "cell_type": "code", "execution_count": 13, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:18.658348Z", "start_time": "2024-02-05T11:58:17.498722Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 idnametypelabelvalid_valuesinvalid_valuesis_usablenum_valid_answersnum_unique_answers
v10v1ordinalhow important in your life: work (Q1A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587274
v21v2ordinalhow important in your life: family (Q1B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True592214
v32v3ordinalhow important in your life: friends and acquaintances (Q1C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True592154
v43v4ordinalhow important in your life: leisure time (Q1D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590324
v54v5ordinalhow important in your life: politics (Q1E){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587644
v65v6ordinalhow important in your life: religion (Q1F){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586224
v76v7ordinaltaking all things together how happy are you (Q2){1.0: 'very happy', 2.0: 'quite happy', 3.0: 'not very happy', 4.0: 'not at all happy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587074
v87v8ordinaldescribe your state of health these days (Q3){1.0: 'very good', 2.0: 'good', 3.0: 'fair', 4.0: 'poor', 5.0: 'very poor'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593045
v98v9binarydo you belong to: religious organization (Q4A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583332
v109v10binarydo you belong to: cultural activities (Q4B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582842
v1110v11binarydo you belong to: trade unions (Q4C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582692
v1211v12binarydo you belong to: political parties/groups (Q4D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582432
v1312v13binarydo you belong to: environment, ecology, animal rights (Q4E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582712
v1413v14binarydo you belong to: professional associations (Q4F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582232
v1514v15binarydo you belong to: sports/recreation (Q4G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583742
v1615v16binarydo you belong to: charitable/humanitarian organization (Q4H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582592
v1716v17binarydo you belong to: consumer organization (Q4I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581812
v1817v18binarydo you belong to: self-help group, mutual aid group (Q4J){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581762
v1918v19binarydo you belong to: other groups (Q4K){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True577282
v2019v20binarydo you belong to: none (spontaneous) (Q4){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True531852
v2120v21binarydid you do voluntary work in the last 6 months (Q5){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589862
v2221v22binarydont like as neighbours: people of different race (Q6A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570842
v2322v23binarydont like as neighbours: heavy drinkers (Q6B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580752
v2423v24binarydont like as neighbours: immigrants/foreign workers (Q6C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True565202
v2524v25binarydont like as neighbours: drug addicts (Q6D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582472
v2625v26binarydont like as neighbours: homosexuals (Q6E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575132
v2726v27binarydont like as neighbours: Christians (optional in countries with Christian majority) (Q6F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True490032
v2827v28binarydont like as neighbours: Muslims (optional in countries with Muslim majority) (Q6G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True555872
v2928v29binarydont like as neighbours: Jews (optional) (Q6H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570612
v3029v30binarydont like as neighbours: Gypsies (optional) (Q6I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572882
v3130v31binarypeople can be trusted/can't be too careful (Q7){1.0: 'most people can be trusted', 2.0: 'can not be too careful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580832
v3231v32ordinalhow much you trust: your family (Q8A){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591784
v3332v33ordinalhow much you trust: people in your neighborhood (Q8B){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586164
v3433v34ordinalhow much you trust: people you know personally (Q8C){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589814
v3534v35ordinalhow much you trust: people you meet for the first time (Q8D){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579694
v3635v36ordinalhow much you trust: people of another religion (Q8E){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True547854
v3736v37ordinalhow much you trust: people of another nationality (Q8F){1.0: 'trust completely', 2.0: 'trust somewhat', 3.0: 'do not trust very much', 4.0: 'do not trust at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True550874
v3837v38ordinalhow much control over your life (Q9){1.0: 'none at all', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'a great deal'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5855010
v3938v39ordinalhow satisfied are you with your life (Q10){1.0: 'dissatisfied', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5912210
v4039v40binaryimportant in a job: good pay (Q11A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587402
v4140v41binaryimportant in a job: good hours (Q11B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585382
v4241v42binaryimportant in a job: opportunity to use initiative (Q11C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579022
v4342v43binaryimportant in a job: generous holidays (Q11D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580072
v4443v44binaryimportant in a job: achieving something (Q11E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582182
v4544v45binaryimportant in a job: responsible job (Q11F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579652
v4645v46ordinaljob needed to develop talents (Q12A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587775
v4746v47ordinalhumiliating receiving money without working (Q12B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585155
v4847v48ordinalpeople turn lazy not working (Q12C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586875
v4948v49ordinalwork is a duty towards society (Q12D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587145
v5049v50ordinalwork comes always first (Q12E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588205
v5150v51binarydo you belong to a religious denomination (Q13){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589842
v5251v52nominalwhich religious denomination do you belong to (Q13a) (harmonized){1.0: 'Roman catholic', 2.0: 'Protestant', 3.0: 'Free church/Non-conformist/Evangelical', 4.0: 'Jew', 5.0: 'Muslim', 6.0: 'Hindu', 7.0: 'Buddhist', 8.0: 'Orthodox', 9.0: 'Other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True410379
v5352v53binarydid you belong to a religious denomination (Q14){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True189192
v5453v54ordinalhow often attend religious services (Q15){1.0: 'more than once week', 2.0: 'once a week', 3.0: 'once a month', 4.0: 'only on specific holy days', 5.0: 'once a year', 6.0: 'less often', 7.0: 'never, practically never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588517
v5554v55ordinalhow often attend religious services 12 years old (Q16){1.0: 'more than once week', 2.0: 'once a week', 3.0: 'once a month', 4.0: 'only on specific holy days', 5.0: 'once a year', 6.0: 'less often', 7.0: 'never, practically never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575517
v5655v56ordinalare you a religious person (Q17){1.0: 'a religious person', 2.0: 'not a religious person', 3.0: 'a convinced atheist'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570823
v5756v57binarydo you believe in: God (Q18A){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558942
v5857v58binarydo you believe in: life after death (Q18B){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True511862
v5958v59binarydo you believe in: hell (Q18C){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True518682
v6059v60binarydo you believe in: heaven (Q18D){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True518992
v6160v61binarydo you believe in: re-incarnation (Q19){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True522992
v6261v62ordinalwhich statement closest to your beliefs (Q20){1.0: 'personal God', 2.0: 'spirit or life force', 3.0: \"don't know what to think\", 4.0: 'no spirit, God or life force'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574974
v6362v63ordinalhow important is God in your life (Q21){1.0: 'not at all important', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5794710
v6463v64ordinalhow often do you pray outside religious services (Q22){1.0: 'every day', 2.0: 'more than once week', 3.0: 'once a week', 4.0: 'at least once a month', 5.0: 'several times a year', 6.0: 'less often', 7.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True578827
v6564v65ordinalimportant in marriage: faithfulness (Q23A){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591383
v6665v66ordinalimportant in marriage: adequate income (Q23B){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590783
v6766v67ordinalimportant in marriage: good housing (Q23C){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591213
v6867v68ordinalimportant in marriage: share household chores (Q23D){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588873
v6968v69ordinalimportant in marriage: children (Q23E){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586763
v7069v70ordinalimportant in marriage: time for friends and personal hobbies (Q23F){1.0: 'very important', 2.0: 'rather important', 3.0: 'not very important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588143
v7170v71binarymarriage is outdated (Q24){1.0: 'agree', 2.0: 'disagree'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573492
v7271v72ordinalchild suffers with working mother (Q25A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580804
v7372v73ordinalwomen really want home and children (Q25B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572414
v7473v74ordinalfamily life suffers when woman has full-time job (Q25C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580554
v7574v75ordinalman's job is to earn money; woman's job is to look after home and family (Q25D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584664
v7675v76ordinalmen make better political leaders than women (Q25E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True569944
v7776v77ordinaluniversity education more important for a boy than for a girl (Q25F){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581834
v7877v78ordinalmen make better business executives than women (Q25G){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True571584
v7978v79ordinalone of main goals in life has been to make my parents proud (Q25H){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'disagree', 4.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True566224
v8079v80ordinaljobs are scarce: giving...(nation) priority (Q26A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586335
v8180v81ordinaljobs are scarce: giving men priority (Q26B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586955
v8281v82ordinalhomosexual couples - as good parents as other couples (Q27A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True547645
v8382v83ordinalduty towards society to have children (Q27B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584915
v8483v84ordinalIt is childs duty to provide long-term care for parents (Q27C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586785
v8584v85binarylearn children at home: good manners (Q28A){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587982
v8685v86binarylearn children at home: independence (Q28B){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586272
v8786v87binarylearn children at home: hard work (Q28C){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587082
v8887v88binarylearn children at home: feeling of responsibility (Q28D){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587292
v8988v89binarylearn children at home: imagination (Q28E){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581602
v9089v90binarylearn children at home: tolerance and respect (Q28F){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585602
v9190v91binarylearn children at home: thrift, saving money and things (Q28G){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584322
v9291v92binarylearn children at home: determination, perseverance (Q28H){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583762
v9392v93binarylearn children at home: religious faith (Q28I){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581242
v9493v94binarylearn children at home: unselfishness (Q28J){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581902
v9594v95binarylearn children at home: obedience (Q28K){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581892
v9695v96binarylearn children at home: none (spontaneous) (Q28){1.0: 'mentioned', 2.0: 'not mentioned'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True536712
v9796v97ordinalhow interested are you in politics (Q29){1.0: 'very interested', 2.0: 'somewhat interested', 3.0: 'not very interested', 4.0: 'not at all interested'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591324
v9897v98ordinalpolitical action: signing a petition (Q30A){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570023
v9998v99ordinalpolitical action: joining in boycotts (Q30B){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558753
v10099v100ordinalpolitical action: attending lawful demonstrations (Q30C){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True566223
v101100v101ordinalpolitical action: joining unofficial strikes (Q30D){1.0: 'have done', 2.0: 'might do', 3.0: 'would never do'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True554743
v102101v102ordinalpolitical view: left-right (Q31){1.0: 'the left', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4772310
v103102v103ordinalindividual vs. state responsibility for providing (Q32A){1.0: 'individual responsibility', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'state responsibility'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5821410
v104103v104ordinaltake any job vs. right to refuse job when unemployed (Q32B){1.0: 'unemployed take any job', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'unemployed right to refuse a job'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5806610
v105104v105ordinalcompetition is good vs. harmful (Q32C){1.0: 'competition good', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'competition harmful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5751610
v106105v106ordinalequalize incomes vs. incentives for individual effort (Q32D){1.0: 'incomes more equal', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'incentives to individual efforts'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5810310
v107106v107ordinalprivate vs. government ownership business (Q32E){1.0: 'private ownership increased', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'government ownership increased'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5499110
v108107v108nominalaims of this country: most important (Q33){1.0: 'high level of economic growth', 2.0: 'strong defense forces', 3.0: 'more say at their jobs/ in communities', 4.0: 'make cities/countryside more beautiful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575034
v109108v109nominalaims of this country: 2nd most important (Q33a){1.0: 'high level of economic growth', 2.0: 'strong defense forces', 3.0: 'more say at their jobs/ in communities', 4.0: 'make cities/countryside more beautiful'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True563424
v110109v110nominalaims of respondent: most important (Q34){1.0: 'maintaining order in nation', 2.0: 'more say in important government decisions', 3.0: 'fighting rising prices', 4.0: 'protect freedom of speech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580664
v111110v111nominalaims of respondent: 2nd most important (Q35){1.0: 'maintaining order in nation', 2.0: 'more say in important government decisions', 3.0: 'fighting rising prices', 4.0: 'protect freedom of speech'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True571784
v112111v112binaryare you willing to fight for country (Q36){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True527182
v113112v113nominalgood/bad: decrease work importance (Q37A){1.0: 'good', 2.0: 'bad', 3.0: \"don't mind\"}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True560283
v114113v114nominalgood/bad: greater respect for authority (Q37B){1.0: 'good', 2.0: 'bad', 3.0: \"don't mind\"}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True552803
v115114v115ordinalhow much confidence in: church (Q38A){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574554
v116115v116ordinalhow much confidence in: armed forces (Q38B){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True560064
v117116v117ordinalhow much confidence in: education system (Q38C){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581594
v118117v118ordinalhow much confidence in: the press (Q38D){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580724
v119118v119ordinalhow much confidence in: trade unions (Q38E){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True541914
v120119v120ordinalhow much confidence in: the police (Q38F){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True584954
v121120v121ordinalhow much confidence in: parliament (Q38G){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573664
v122121v122ordinalhow much confidence in: civil service (Q38H){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572284
v123122v123ordinalhow much confidence in: social security system (Q38I){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True572944
v124123v124ordinalhow much confidence in: European Union (Q38J){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True557054
v125124v125ordinalhow much confidence in: United Nations Organization (Q38K){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True541684
v126125v126ordinalhow much confidence in: health care system (Q38L){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585854
v127126v127ordinalhow much confidence in: justice system (Q38M){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570924
v128127v128ordinalhow much confidence in: major companies (Q38N){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True546454
v129128v129ordinalhow much confidence in: environmental organizations (Q38O){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True555824
v130129v130ordinalhow much confidence in: political parties (Q38P){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True568844
v131130v131ordinalhow much confidence in: government (Q38Q){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575064
v132131v132ordinalhow much confidence in: social media (Q38R){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True543414
v133132v133ordinaldemocracy: governments tax the rich and subsidize the poor (Q39A){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5298011
v134133v134ordinaldemocracy: religious authorities interpret the laws (Q39B){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5189211
v135134v135ordinaldemocracy: people choose their leaders in free elections (Q39C){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5401511
v136135v136ordinaldemocracy: people receive state aid for unemployment (Q39D){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5397711
v137136v137ordinaldemocracy: the army takes over when government is incompetent (Q39E){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5189611
v138137v138ordinaldemocracy: civil rights protect people from state oppression (Q39F){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5250411
v139138v139ordinaldemocracy: the state makes people’s incomes equal (Q39G){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5305011
v140139v140ordinaldemocracy: people obey their rulers (Q39H){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5306811
v141140v141ordinaldemocracy: women have the same rights as men (Q39I){0.0: 'it is against democracy [DO NOT READ OUT]', 1.0: 'not at all an essential characteristic of democracy', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'an essential characteristic of democracy'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5442611
v142141v142ordinalimportance of democracy (Q40){1.0: 'not at all important', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'absolutely important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5812510
v143142v143ordinaldemocracy in own country (Q41){1.0: 'not at all democratic', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'completely democratic'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5721410
v144143v144ordinalsatisfaction political system (Q42){1.0: 'not satisfied at all', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'completely satisfied'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5753010
v145144v145ordinalpolitical system: strong leader (Q43A){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True553744
v146145v146ordinalpolitical system: experts making decisions (Q43B){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True543134
v147146v147ordinalpolitical system: the army ruling (Q43C){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True554094
v148147v148ordinalpolitical system: democratic (Q43D){1.0: 'very good', 2.0: 'fairly good', 3.0: 'fairly bad', 4.0: 'very bad'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True562454
v149148v149ordinaldo you justify: claiming state benefits (Q44A){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5824010
v150149v150ordinaldo you justify: cheating on tax (Q44B){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5851110
v151150v151ordinaldo you justify: taking soft drugs (Q44C){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5844210
v152151v152ordinaldo you justify: accepting a bribe (Q44D){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5872310
v153152v153ordinaldo you justify: homosexuality (Q44E){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5695210
v154153v154ordinaldo you justify: abortion (Q44F){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5727710
v155154v155ordinaldo you justify: divorce (Q44G){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5790310
v156155v156ordinaldo you justify: euthanasia (Q44H){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5618510
v157156v157ordinaldo you justify: suicide (Q44I){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5670510
v158157v158ordinaldo you justify: having casual sex (Q44J){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5703310
v159158v159ordinaldo you justify: avoiding a fare on public transport (Q44K){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5855910
v160159v160ordinaldo you justify: prostitution (Q44L){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5770910
v161160v161ordinaldo you justify: artificial insemination or in-vitro fertilization (Q44M){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5680010
v162161v162ordinaldo you justify: political violence (Q44N){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5800910
v163162v163ordinaldo you justify: death penalty (Q44O){1.0: 'never', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'always'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5712310
v164163v164ordinalhow close do you feel: to own town/city (Q45A){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589424
v165164v165ordinalhow close do you feel: to your [county, region, district] (Q45B){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587864
v166165v166ordinalhow close do you feel: to [country] (Q45C){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588574
v167166v167ordinalhow close do you feel: to [continent] (Q45D){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581104
v168167v168ordinalhow close do you feel: to world (Q45E){1.0: 'very close', 2.0: 'close', 3.0: 'not very close', 4.0: 'not close at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573934
v169168v169binarydo you have... [country's] nationality (Q46){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593182
v170169v170ordinalhow proud are you to be a ... [country] citizen (Q47){1.0: 'very proud', 2.0: 'quite proud', 3.0: 'not very proud', 4.0: 'not at all proud'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True558854
v171170v171ordinalvote in elections: local level (Q48A){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True575253
v172171v172ordinalvote in elections: national level (Q48B){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True569523
v173172v173ordinalvote in elections: European level (Q48C){1.0: 'always', 2.0: 'usually', 3.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 7.0: 'not allowed to vote'}True342423
v176173v176ordinalhow often in country's elections: votes are counted fairly (Q50A){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True522704
v177174v177ordinalhow often in country's elections: opposition candidates are prevented from running (Q50B){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True477404
v178175v178ordinalhow often in country's elections: TV news favors the governing party (Q50C){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True510814
v179176v179ordinalhow often in country's elections: voters are bribed (Q50D){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True498974
v180177v180ordinalhow often in country's elections: journalists provide fair coverage of elections (Q50E){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True516854
v181178v181ordinalhow often in country's elections: election officials are fair (Q50F){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True506644
v182179v182ordinalhow often in country's elections: rich people buy elections (Q50G){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True481264
v183180v183ordinalhow often in country's elections: voters are threatened with violence at the polls (Q50H){1.0: 'very often', 2.0: 'fairly often', 3.0: 'not often', 4.0: 'not at all often'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True493414
v184181v184ordinalimmigrants: impact on the development of [your country] (Q51){1.0: 'very bad', 2.0: 'quite bad', 3.0: 'neither good, nor bad', 4.0: 'quite good', 5.0: 'very good'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True569585
v185182v185ordinalimmigrants take away jobs from [nationality] (Q52A){1.0: 'take away', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'do not take away'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5738910
v186183v186ordinalimmigrants increase crime problems (Q52B){1.0: 'make it worse', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'do not make it worse'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5667910
v187184v187ordinalimmigrants are a strain on welfare system (Q52C){1.0: 'are a strain', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'are not a strain'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5657810
v188185v188ordinalbetter if immigrants maintain/not maintain own customs (Q52D){1.0: 'maintain distinct customs and traditions', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'do not maintain distinct customs and traditions'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5570610
v189186v189ordinalimportant: to have been born in [country] (Q53A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588504
v190187v190ordinalimportant: to respect [country nationality] political institutions and laws (Q53B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588504
v191188v191ordinalimportant: to have [country nationality] ancestry (Q53C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587284
v192189v192ordinalimportant: to be able to speak [national language] (Q53D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590344
v193190v193ordinalimportant: to share [national] culture (Q53E){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588114
v194191v194ordinalimportant: to be born in Europe (Q54A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True577414
v195192v195ordinalimportant: to have European ancestry (Q54B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True575624
v196193v196ordinalimportant: to be a Christian (Q54C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573024
v197194v197ordinalimportant: to share European culture (Q54D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True576144
v198195v198ordinalEuropean Union enlargement (Q55){1.0: 'should go further', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6.0(*)', 7.0: '7.0(*)', 8.0: '8.0(*)', 9.0: '9.0(*)', 10.0: 'has gone too far'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5413910
v199196v199ordinalenvironment: giving part of income (Q56A){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True576645
v200197v200ordinalenvironment: too difficult for me to do much (Q56B){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580125
v201198v201ordinalenvironment: there are more important things to do (Q56C){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580915
v202199v202ordinalenvironment: no point unless others do the same (Q56D){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580425
v203200v203ordinalenvironment: environmental threats are exaggerated (Q56E){1.0: 'agree strongly', 2.0: 'agree', 3.0: 'neither agree nor disagree', 4.0: 'disagree', 5.0: 'disagree strongly'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True563485
v204201v204binaryprotecting environment vs. economic growth (Q57){1.0: 'protecting the environment priority, even if slower economic growth and loss of jobs', 2.0: 'economic growth and creating jobs priority, even if environment suffers'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 3.0: 'other answer (code if volunteered only!)'}True522242
v205202v205ordinalgovernment: public area under video surveillance (Q58A){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True579234
v206203v206ordinalgovernment: monitor all information exchanged on the internet (Q58B){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True570224
v207204v207ordinalgovernment: collect information about anyone without their knowledge (Q58C){1.0: 'definitely should have the right', 2.0: 'probably should have the right', 3.0: 'probably should not have the right', 4.0: 'definitely should not have the right'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True574704
v208205v208ordinalhow often do you follow politics: on television (Q59A){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True591285
v209206v209ordinalhow often do you follow politics: on the radio (Q59B){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589245
v210207v210ordinalhow often do you follow politics: in the daily papers (Q59C){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589295
v211208v211ordinalhow often do you follow politics: on social media (Q59D){1.0: 'every day', 2.0: 'several times a week', 3.0: 'once or twice a week', 4.0: 'less often', 5.0: 'never'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586475
v212209v212ordinalare you concerned with: people neighbourhood (Q60A){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True588835
v213210v213ordinalare you concerned with: people own region (Q60B){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587815
v214211v214ordinalare you concerned with: fellow countrymen (Q60C){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587045
v215212v215ordinalare you concerned with: Europeans (Q60D){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582125
v216213v216ordinalare you concerned with: humankind (Q60E){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True581445
v217214v217ordinalare you concerned with: elderly people (Q61A){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590345
v218215v218ordinalare you concerned with: unemployed people (Q61B){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True587975
v219216v219ordinalare you concerned with: immigrants (Q61C){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True583795
v220217v220ordinalare you concerned with: sick and disabled (Q61D){1.0: 'very much', 2.0: 'much', 3.0: 'to a certain extent', 4.0: 'not so much', 5.0: 'not at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True589125
v221218v221ordinalimportant: eliminating income inequalities (Q62A){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True573204
v222219v222ordinalimportant: basic needs for all (Q62B){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582474
v223220v223ordinalimportant: recognizing people on merits (Q62C){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True578664
v224221v224ordinalimportant: protecting against terrorism (Q62D){1.0: 'very important', 2.0: 'quite important', 3.0: 'not important', 4.0: 'not at all important'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True582154
v225222v225binarysex respondent (Q63){1.0: 'male', 2.0: 'female'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True594122
v226223v226numericyear of birth respondent (Q64){1937.0: '1937 and before'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5911367
v227224v227binaryrespondent born in [country] (Q65){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True593672
v229225v229numericyear in which respondent came to live in [country] (Q67){1941.0: '1941 and before'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True411679
v230226v230binaryfather born in [country] (Q68){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590422
v232227v232binarymother born in [country] (Q70){1.0: 'yes', 2.0: 'no'}{-5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: \"don't know\"}True592182
v234228v234nominalcurrent legal marital status respondent (Q72){1.0: 'married', 2.0: 'registered partnership', 3.0: 'widowed', 4.0: 'divorced', 5.0: 'separated', 6.0: 'never married and never registered partnership'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590206
v235229v235binarylived with partner before marriage (Q73){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True439872
v236230v236binaryliving with partner (Q74){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True273012
v237231v237binaryhaving steady relationship (Q75){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True198882
v238232v238ordinaldo you live with your parents/parents in law (Q76){1.0: 'no', 2.0: 'yes, own parent(s)', 3.0: 'yes, parent(s) in law', 4.0: 'yes, both own parent(s) and parent(s) in law'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True590014
v240233v240ordinalnumber of people in household (Q78){1.0: 'I live alone', 2.0: '2.0(*)', 3.0: '3.0(*)', 4.0: '4.0(*)', 5.0: '5.0(*)', 6.0: '6 and more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True586916
v241234v241numericage of youngest person in household (Q79){80.0: '80 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True4598381
v242235v242binaryage completed education respondent (Q80){7.0: '7 and younger', 70.0: '70 and older'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 0.0: 'no formal education'}False5583464
v244236v244nominalpaid employment/no paid employment (Q82){1.0: '30h a week or more', 2.0: 'less then 30h a week', 3.0: 'self employed', 4.0: 'military service', 5.0: 'retired/pensioned', 6.0: 'homemaker not otherwise employed', 7.0: 'student', 8.0: 'unemployed', 9.0: 'disabled', 10.0: 'other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5902710
v245237v245binaryemployment/self-employment: last job (Q83){1.0: 'employed', 2.0: 'self-employed'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'never had a paid job'}True219032
v247238v247ordinalrespondent has/had how many employees (Q85){1.0: 'none', 2.0: '1-9', 3.0: '10-24', 4.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True54674
v248239v248binarydo/did you supervise someone (Q86){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True460982
v249240v249nominalemployment sector you work/-ed for (Q87){1.0: 'government or public institution', 2.0: 'private business or industry', 3.0: 'private non-profit organization'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True434423
v250241v250binarypartner/spouse born in [country] (Q88){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True359142
v253242v253nominalpaid employment/no paid employment spouse/partner (Q90){1.0: '30h a week or more', 2.0: 'less then 30h a week', 3.0: 'self employed', 4.0: 'military service', 5.0: 'retired/pensioned', 6.0: 'homemaker not otherwise employed', 7.0: 'student', 8.0: 'unemployed', 9.0: 'disabled', 10.0: 'other'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True3575210
v254243v254binaryemployment/self-employment (spouse/partner): last job (Q91){1.0: 'employed', 2.0: 'self-employed'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'never had a paid job'}True115432
v256244v256ordinalspouse/partner has/had how many employees (Q93){1.0: 'none', 2.0: '1-9', 3.0: '10-24', 4.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True35224
v257245v257binarydoes/did spouse/partner supervise someone (Q94){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True278712
v258246v258ordinalhow many people does she/he supervise (Q95){1.0: '1-9', 2.0: '10-24', 3.0: '25 or more'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True65623
v259247v259binaryrespondent experienced unemployment longer than 3 months (Q96){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True580242
v260248v260binarydependency on social security during last 5 years respondent (Q97){1.0: 'yes', 2.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True585612
v261249v261nominalhouseholds total net income (Q98) (standardized){1.0: 'A - 1st decile', 2.0: 'B - 2nd decile', 3.0: 'C - 3rd decile', 4.0: 'D - 4th decile', 5.0: 'E - 5th decile', 6.0: 'F - 6th decile', 7.0: 'G - 7th decile', 8.0: 'H - 8th decile', 9.0: 'I - 9th decile', 10.0: 'J - 10th decile'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True5069810
v264250v264ordinalat age 14, was father employed (Q101){1.0: 'yes employed', 2.0: 'yes self employed', 3.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True550493
v265251v265ordinalat age 14, was mother employed (Q102){1.0: 'yes employed', 2.0: 'yes self employed', 3.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True569423
v266252v266nominalat age 14, occupational group of your parent (main earner) (Q103){1.0: 'professional and technical (for example: doctor, teacher, engineer, artist, accountant, nurse)', 2.0: 'higher administrative (for example: banker, executive in big business, high government official, union official)', 3.0: 'clerical (for example: secretary, clerk, office manager, civil servant, bookkeeper)', 4.0: 'sales (for example: sales manager, shop owner, shop assistant, insurance agent, buyer)', 5.0: 'service (for example: restaurant owner, police officer, waitress, barber, caretaker)', 6.0: 'skilled worker (for example: foreman, motor mechanic, printer, seamstress, tool and die maker, electrician)', 7.0: 'semi-skilled worker (for example: bricklayer, bus driver, cannery worker, carpenter, sheet metal worker, baker)', 8.0: 'unskilled worker (for example: laborer, porter, unskilled factory worker, cleaner)', 9.0: 'farm worker (for example: farm laborer, tractor driver)', 10.0: 'farm proprietor, farm manager'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 66.0: 'does not apply to me (spontaneous)'}True5534410
v267253v267ordinalat age 14, mother liked to read books (Q104A){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True563984
v268254v268ordinalat age 14, discussed politics with mother (Q104B){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True571424
v269255v269ordinalat age 14, mother liked to follow the news (Q104C){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True563124
v270256v270ordinalat age 14, parent(s) had problems making ends meet (Q104D){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True569774
v271257v271ordinalat age 14, father liked to read books (Q104E){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True543764
v272258v272ordinalat age 14, discussed politics with father (Q104F){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True552194
v273259v273ordinalat age 14, father liked to follow the news (Q104G){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True546354
v274260v274ordinalat age 14, parent(s) had problems replacing broken things (Q104H){1.0: 'yes', 2.0: 'to some extent', 3.0: 'a little bit', 4.0: 'no'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know', 6.0: 'does not apply to me (spontaneous)'}True557924
v277261v277numericdate of interview (Q107){}{-4.0: 'item not included', -2.0: 'no answer'}True57588951
v280262v280ordinalinterest of respondent during interview (Q109){1.0: 'very interested', 2.0: 'somewhat interested', 3.0: 'not very interested'}{-10.0: 'multiple answers (Mail)', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True544883
v282263v282numericinterviewer number (Q111){}{-9.0: 'no follow-up', -8.0: 'follow-up non response', -7.0: 'matrix not applied', -5.0: 'other missing', -4.0: 'item not included'}True510921989
\n" ], "text/plain": [ "" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(questions.variable_info())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This looks nice! Soon we can search for tangles :-)\n", "\n", "Please note: **The configuration of a survey has to be done only once**: A configured `Survey` object can be saved to disk and loaded from disk using the functions `save` and `load` of the class `Survey`. For other datasets the configuration might require more or less work than we have seen in this example. If you analyse data from your own study, it should be possible to set up the data in SPSS and use it directly in the tangle library with no or only a few modifications on the python side." ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 2. A simple tangle analysis\n", "\n", "Sometimes it makes sense to analyse tangles of features generated for the complete set of questions, but this can take quite some time and the results are not always easy to interpret. In this notebook, it is beneficial to extract a subset of the questions, i.e. a subset of the columns of the dataframe.\n", "\n", "We select a subset of questions about the respondents' *level of trust in various institutions*. These are questions that have their `id` within the range from `114` to `131`, inclusive.\n", "(Please note that the `id` of a question is only valid inside a `Survey` object: it is a local `id`. If a subset of the questions is selected to build another instance of a `Survey`, the local `id` of a question might not be persistent.)\n", "\n", "We can subset the survey, like above, with help of the function `select_questions`. Afterward, we select a subset of the rows: We want to ignore all rows that contain missing or other invalid values. This is done in the same way as for the columns by the function `select_rows`. After sub-setting the survey, we display the reduced variable info, again:" ] }, { "cell_type": "code", "execution_count": 14, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:18.872825Z", "start_time": "2024-02-05T11:58:18.644270Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 idnametypelabelvalid_valuesinvalid_valuesis_usablenum_valid_answersnum_unique_answers
v1150v115ordinalhow much confidence in: church (Q38A){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1161v116ordinalhow much confidence in: armed forces (Q38B){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1172v117ordinalhow much confidence in: education system (Q38C){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1183v118ordinalhow much confidence in: the press (Q38D){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1194v119ordinalhow much confidence in: trade unions (Q38E){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1205v120ordinalhow much confidence in: the police (Q38F){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1216v121ordinalhow much confidence in: parliament (Q38G){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1227v122ordinalhow much confidence in: civil service (Q38H){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1238v123ordinalhow much confidence in: social security system (Q38I){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v1249v124ordinalhow much confidence in: European Union (Q38J){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v12510v125ordinalhow much confidence in: United Nations Organization (Q38K){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v12611v126ordinalhow much confidence in: health care system (Q38L){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v12712v127ordinalhow much confidence in: justice system (Q38M){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v12813v128ordinalhow much confidence in: major companies (Q38N){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v12914v129ordinalhow much confidence in: environmental organizations (Q38O){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v13015v130ordinalhow much confidence in: political parties (Q38P){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v13116v131ordinalhow much confidence in: government (Q38Q){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
v13217v132ordinalhow much confidence in: social media (Q38R){1.0: 'a great deal', 2.0: 'quite a lot', 3.0: 'not very much', 4.0: 'none at all'}{-10.0: 'multiple answers Mail', -9.0: 'no follow-up', -8.0: 'follow-up non response', -5.0: 'other missing', -4.0: 'item not included', -3.0: 'not applicable', -2.0: 'no answer', -1.0: 'dont know'}True427104
\n" ], "text/plain": [ "" ] }, "execution_count": 14, "metadata": {}, "output_type": "execute_result" } ], "source": [ "some_questions = questions.select_questions(range(114,132))\n", "some_questions = some_questions.select_respondents(some_questions.complete_rows())\n", "styled_df(some_questions.variable_info())" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "We have 18 questions left, all are ordinal and take values from `a great deal` (encoded as the numerical value `1`) to `none at all` (encoded as the numerical value `4`). The numerical encoding is not like one would expect - a bigger number means less trust - but this comes from the raw SPSS data. This phenomenon can often be seen in survey data, so maybe it's just a common way to encode ordinal categories in the social sciences. We could change it, but this is not really necessary. We just keep it in mind, so we are not confused by this later...\n", "\n", "So, now it's really time to try the tangle analysis! \n", "\n", "The library provides a class `SurveyTangles` that manages the tangle search and its results. \n", "The most convenient way to start a tangle analysis is given by the static function `SurveyTangles.search(..)`. This function sets up a `SurveyTangles` object, initializes some important properties and starts a tangle search for a given agreement, i.e. the minimum intersection size allowed for all triples of a tangle's specifications (please see the book for a detailed explanation of this parameter). \n", "The function can be used in many different ways: you can find more information about the various parameters in the documentation.\n", "\n", "There are two mandatory parameters: the `Survey` of interest, and the `agreement`. \n", "\n", "Without knowing more about the data set, we first try setting the agreement parameter to 10% of the data size.\n", "We use another parameter to specify an order function. We want to order the features by the *order function* $(\\text{O}2)$, a similarity based order function from the tangles book:" ] }, { "cell_type": "code", "execution_count": 15, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:20.028995Z", "start_time": "2024-02-05T11:58:18.877230Z" } }, "outputs": [], "source": [ "tangles = SurveyTangles.search(survey=some_questions, agreement=questions.num_respondents//10, order=\"O2\", progress_callback=None)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "That's it! The result is stored in the `SurveyTangles` object `tangles`. Let's inspect the result:\n", "\n", "The library provides a function `typical_answers()` that converts the specifications of each tangle back to typical answers of the survey questions. The function returns a table containing, in each row, the typical answers specified by the tangle corresponding to that row. For visual simplicity, we display the transpose of this table (so every column corresponds to a tangle):" ] }, { "cell_type": "code", "execution_count": 16, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:20.085747Z", "start_time": "2024-02-05T11:58:20.029203Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 0
how much confidence in: church (Q38A)[v115][quite a lot; not very much]
how much confidence in: armed forces (Q38B)[v116]quite a lot
how much confidence in: education system (Q38C)[v117]quite a lot
how much confidence in: the press (Q38D)[v118]not very much
how much confidence in: trade unions (Q38E)[v119]not very much
how much confidence in: the police (Q38F)[v120]quite a lot
how much confidence in: parliament (Q38G)[v121]not very much
how much confidence in: civil service (Q38H)[v122][quite a lot; not very much]
how much confidence in: social security system (Q38I)[v123][quite a lot; not very much]
how much confidence in: European Union (Q38J)[v124][quite a lot; not very much]
how much confidence in: United Nations Organization (Q38K)[v125][quite a lot; not very much]
how much confidence in: health care system (Q38L)[v126]quite a lot
how much confidence in: justice system (Q38M)[v127][quite a lot; not very much]
how much confidence in: major companies (Q38N)[v128]not very much
how much confidence in: environmental organizations (Q38O)[v129][quite a lot; not very much]
how much confidence in: political parties (Q38P)[v130]not very much
how much confidence in: government (Q38Q)[v131]not very much
how much confidence in: social media (Q38R)[v132]not very much
\n" ], "text/plain": [ "" ] }, "execution_count": 16, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(tangles.typical_answers().T, scrollable=False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Ok, there seems to be only one typical way to answer these questions at this agreement level. It seems particularly typical to not trust political parties, the government, big companies, the press and some further institutions. Interestingly, the only positive answers are about trust in armed forces, education, the police and the health care system.\n", "\n", "For some questions we don't see a typical answer, but a range of typical answers. This happens, if not all features corresponding to a question could be specified for this agreement.\n", "\n", "Let's try to find more tangles by lowering the agreement parameter. We don't have to start a new search from scratch, because the `SurveyTangles` object still maintains a link to the algorithm (`TangleSweep`) and a data structure (`TangleSearchTree`) that allows to dynamically update the tangles.\n", "\n", "The agreement can be changed by the function `change_agreement`. If the agreement falls below the current lowest agreement, a tree update has to be done so that the algorithm is able to create valid tangle search results. Unfortunately, this can take a long time. To avoid triggering a time-consuming task by accident, the function `change_agreement` contains a second parameter `force_tree_update`, that has to be set to `True` if the tree update should really be performed.\n", "\n", "We choose a slightly lower agreement of `questions.num_respondents//16` (using the '//' operator for integer division):" ] }, { "cell_type": "code", "execution_count": 17, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:20.548860Z", "start_time": "2024-02-05T11:58:20.046212Z" } }, "outputs": [], "source": [ "tangles.change_agreement(questions.num_respondents//16, force_tree_update=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "Let's look at the results again. If we have more than just a few tangles, the situation can become quite confusing. Therefore, the function `typical_answers` contains a few parameters to focus on interesting details.\n", "For example, a helpful parameter is the flag `extract_const_answers`. If it set to `True`, the function returns a second dataframe containing all answers that are typical for *all* tangles and removes the corresponding columns in the typical answers dataframe. \n", "Another helpful parameter, `only_max_level_tangles`, allows us to focus only on complete tangles. We use both these options in the next cell:" ] }, { "cell_type": "code", "execution_count": 18, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:20.562663Z", "start_time": "2024-02-05T11:58:20.549082Z" } }, "outputs": [], "source": [ "answers,const_answers = tangles.typical_answers(only_max_level_tangles=True, extract_const_answers=True)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "The answers shared by all tangles are:" ] }, { "cell_type": "code", "execution_count": 19, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:20.582994Z", "start_time": "2024-02-05T11:58:20.569816Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 0
how much confidence in: armed forces (Q38B)[v116]quite a lot
how much confidence in: education system (Q38C)[v117]quite a lot
how much confidence in: the press (Q38D)[v118]not very much
how much confidence in: trade unions (Q38E)[v119]not very much
how much confidence in: the police (Q38F)[v120]quite a lot
how much confidence in: parliament (Q38G)[v121]not very much
how much confidence in: health care system (Q38L)[v126]quite a lot
how much confidence in: major companies (Q38N)[v128]not very much
how much confidence in: political parties (Q38P)[v130]not very much
how much confidence in: government (Q38Q)[v131]not very much
how much confidence in: social media (Q38R)[v132]not very much
\n" ], "text/plain": [ "" ] }, "execution_count": 19, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(const_answers.T, scrollable=False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "This means that, at this agreement level, the only typical way to answer these questions is as displayed in the table. The remaining typical answers given by each tangle are in the dataframe `answers`. We display the transpose:" ] }, { "cell_type": "code", "execution_count": 20, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:20.584300Z", "start_time": "2024-02-05T11:58:20.580274Z" } }, "outputs": [ { "data": { "text/html": [ "\n", "\n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", " \n", "
 012
how much confidence in: church (Q38A)[v115]quite a lotnot very muchnot very much
how much confidence in: civil service (Q38H)[v122]quite a lotquite a lotnot very much
how much confidence in: social security system (Q38I)[v123]quite a lotquite a lotnot very much
how much confidence in: European Union (Q38J)[v124]quite a lotquite a lotnot very much
how much confidence in: United Nations Organization (Q38K)[v125]quite a lotquite a lotnot very much
how much confidence in: justice system (Q38M)[v127]quite a lotquite a lotnot very much
how much confidence in: environmental organizations (Q38O)[v129]quite a lotquite a lotnot very much
\n" ], "text/plain": [ "" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "styled_df(answers.T, scrollable=False)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "There seem to be two typical ways to answer these questions: One that reflects some positive level of trust in all of these institutions and one that does not. \n", "Interestingly, in addition, the first tangle splits off a slight variation differing only in the trust in the institution of church. It seems to be a bit less common to trust the church than the other \"trustful\" institutions as there are no other 'transition'-tangles between the extreme cases - at least at this agreement level and if we only consider full specifications.\n", "\n", "The library provides a small convenience function to visualize tangle search results and show the inherent tree structure.\n", "\n", "So, finally, let's have a look at the *Tangle Search Tree*. In most cases it is not easy to visualise tangles. Therefore, the user has to provide a couple of callback functions to customize the visualization. We use two custom functions to translate the metadata of the edges to a more readable form:" ] }, { "cell_type": "code", "execution_count": 21, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:21.059121Z", "start_time": "2024-02-05T11:58:20.587876Z" } }, "outputs": [ { "data": { "image/png": "iVBORw0KGgoAAAANSUhEUgAAAxoAAAGVCAYAAAB5OYd2AAAAOXRFWHRTb2Z0d2FyZQBNYXRwbG90bGliIHZlcnNpb24zLjguMiwgaHR0cHM6Ly9tYXRwbG90bGliLm9yZy8g+/7EAAAACXBIWXMAAA9hAAAPYQGoP6dpAACdU0lEQVR4nOzdeVxN+f8H8Ne9N+2LQpaRGkspShRJVEjZt0FmQjGWsRvCMGMYw/fLWMYyBmPf930NTRFjJwwJCSFjiQot6n5+f/Rzvpq6uXFzW17Px8ODe8/7fM773HvPx33fz/mcIxNCCBAREREREWmQXNsJEBERERFR8cNCg4iIiIiINI6FBhERERERaRwLDSIiIiIi0jgWGkREREREpHEsNIiIiIiISONYaBARERERkcax0CAiIiIiIo3TUSdIqVTi4cOHMDExgUwmK+iciIiIiIiokBJCIDk5GZUqVYJcrnrcQq1C4+HDh7CystJYckREREREVLTFxcWhcuXKKperVWiYmJhIjZmammomMyIiIiIiKnKSkpJgZWUl1QiqqFVovD1dytTUlIUGERERERG9d0oFJ4MTEREREZHGsdAgIiIiIiKNY6FBREREREQax0KDiIiIiIg0joUGERERERFpHAsNIiIiIiLSOBYaRERERESkcSw0iIiIiIhI41hoEBERERGRxrHQICIiIiIijWOhQUREREREGsdCg4iIiIiINI6FBhERERERaRwLDSIiIiIi0jgWGkREREREpHE62k6AiDQrJSUFz58/hxAi3+uamprCxMSkALIiIiKikoaFBlExER4ejl9//RVyuRyWlpaQy/M3YCmEwPPnz5GYmIiePXsiICCggDIlIiKikoCFBlExEBERgblz52Lt2rUfPSLx5s0bjB49Gqmpqfj66681lCERERGVNJyjQVQMzJ07F8uXL9fIaU+lSpXCr7/+io0bN37Q6VdEREREAAsNoiJPqVQiJSUF5ubmGmtTJpOhVq1auHHjhsbaJCIiopKFhQZREZeSkgJTU1PVAd7egEym+s/Bg7muVr58eTx79qxgkiYiIqJij3M0iIo4IYR6E7+/+AIwNs75/Gef5Roul8t56hQRERF9MBYaRCXFzJmAjY22syAiIqISgqdOERERERGRxrHQICIiIiIijeOpU0QlxbJlwLNngFwO2NoCHTsCVapoOysi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efIEMTExqF+/PtavX4+JEyciKioKhoaGcHR0REREBMaMGYNTp07lernCpUuX4vvvv8dPP/2EAQMG5Llt0qy6deti165dOHr0KIKCgnI9fcfOzg52dnZQKBSwt7eHj48PAMDJyUn6nJ09e1Y6Dnr27ImIiAhp/bfPnzx5EpcvX5Z+2T98+LBac0SMjY3RrFkzANk/25cuXYKHhwccHR2xf/9+XLt2TVpH3WMhr/i89kmVzp07Y/v27VAqlThw4ADatGmT534bGBigTZs2ALJOaatfvz7CwsIQHh6OOnXqwNzcPMc21Hk/VPnzzz/Rv39/6X40b9u3s7NDzZo1IZPJULduXY3N6yJALpdj1KhR2L59O2JiYrSdTrFRZAsNb29vjBgxQttpaIWNjQ3mzJmj7TRyeP36Nb744guYmppCJpPhxYsXauUqk8mwc+fOT5Ljh1q5ciVKly6t7TSKBT09PQBZp1SpOhdcCPHeu0p7enri/PnzePbsGc6ePQsvLy8IIVChQgVERkYiMjISV65cwZ49e6R1DA0NpX9369YN27dvx5YtW9CxY8dcT1t6N1+5XC79+22OAKCjo5PtS19epzH9u828XoPcvPu6vLsvecVPmjRJej1iY2Ph5eUFT09PHD9+HJUqVUK3bt2we/du2Nra4uLFi6hduzaGDx+O3377LVtbL1++xIABAzBo0CBMmDBB7ZxJc5o2bYr169dj48aNGDlyZI7l734+3/28yuVy6XP27nH17+Ps7WdKCIG2bdtKn5vo6GiMGzfuvfm9u/13P9tff/01lixZgitXrmDIkCHZjpH8Hgu5xee1T6p07doVW7duxfHjx1G3bl0YGxvnud//Pt7e/lCxatUqBAYGvvf1UPV+vNt/5Kfv+PdrQJrRq1cvWFhYFMrvWEVVkS00qPBZtWoVIiIi8NdffyE+Ph5mZmY4e/Zssbgutb+/P27cuKHtNIqtxo0bY/369QCAM2fOwMjICKampjAxMUFycnKu6ygUCvj6+mLo0KHw8/ODQqGAqakpypUrh/379wPIOp85Kioq1/VNTExQt25dfP/99+jVq9cH525tbY1Lly4ByDr3Ozo6GgDQrFkzbNq0SRqZeXsufH40aNAAoaGheP78OdLS0rBjxw40btxY7fV9fHywbNkypKSkAACio6ORmpqKu3fvonz58hgwYAB69OiB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pKRE0jZzcnLQokULSdskMocWLVogJydH8nbz8/Ph7OwsebtEUjPHMZCTkwM3NzdJ25QDCw0iogYaMmQIDhw4IGmbSUlJ8PX1lbRNInPo0qULLl26BH0dq1Kb6s6dO3BxcbGJb3TJ9vn4+CApKUnSNm3lbwALDSKiBgoODsbHH3+My5cvN7gtvV6PTz/9FHfv3kXnzp0lyI7IvARBQFBQEGbOnIny8vIGt1dYWAiNRoN3331XguyIzM/Pzw979uzB6dOnJWnv0KFDOHPmDPr37y9Je3IS9EZ8BVFQUAC1Wo38/Hw0bdr0UeRFRGRVsrKysGDBAuTm5sLDwwP2Jq7+qtfrUVJSguzsbPTr1w+LFi2CnZ2dmbIlkt5//vMfbNu2Da6urnBzczN5NEKr1SI3Nxd6vR4zZszAoEGDzJMokRnk5eVh3rx5uH79Olq3bg0HBweT27h37x5u3LgBLy8vLFmyBC4uLmbIVBrG1gYsNIiIJFReXo68vDxUVFSY/FpHR8d6fUAjsiSFhYUoKCgw+XWCIKB58+ZwcnIyQ1ZEj4ZWq0VeXh7KyspMfq2DgwPc3NygUFj+CUfG1gZcGZyISEJ2dnZwd3eXOw0i2bi6usLV1VXuNIhkoVQq0bJlS7nTsBiWXzIREREREZHVYaFBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSY6FBRERERESSUxkTpNfrAQAFBQVmTYaIiIiIiCxbZU1QWSMYYlShUVhYCABo27ZtA9MiIiIiIiJbUFhYCLVabXC7oH9YKQJAp9MhOzsbrq6uEARB0gSJiIiIiMh66PV6FBYWonXr1lAoDF+JYVShQUREREREZApeDE5ERERERJJjoUFERERERJJjoUFERERERJJjoUFERERERJJjoUFERERERJJjoUFERERERJJjoUFERERERJL7f6elyWMIm6LsAAAAAElFTkSuQmCC", "text/plain": [ "
" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "from tangles.convenience.survey_tangles_visualization import plot_tangle_search_tree\n", "\n", "ordered_metadata = tangles.ordered_metadata(insert_labels=False)\n", "def level_label(level):\n", " if level >= len(ordered_metadata):\n", " return \"\"\n", " var = ordered_metadata[level][0].info[0]\n", " label = tangles.survey.variables[var].label\n", " label = label[:(i:=label.index(\":\")+1)]+\"\\n\" + label[i+1:label.index(\"(\")] # + f\"({var})\"\n", " return (label, 'top', -0.5)\n", "\n", "def edge_label_func(var, op , val):\n", " # to avoid confusion: we inverted the operation for a more natural interpretation (bigger numeric values mean lower trust) \n", " if op == \">=\":\n", " return f\"'{tangles.survey.variables[var].valid_values.get(val) or val}' or less\"\n", " else:\n", " return f\"more than '{tangles.survey.variables[var].valid_values.get(val) or val}'\"\n", "\n", "plt.figure(figsize=(10,5))\n", "plot_tangle_search_tree(tangles, ax=plt.gca(), only_max_level_tangles=True, level_label_func=level_label,\n", " draw_edge_labels=True, _include_splitting='nodes',\n", " level_label_width=2, edge_label_func_for_meta_data=edge_label_func)" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## 3. Summary\n", "\n", "We have seen an example tangle analysis of a part of the European Value Study. The purpose of this notebook was not primarily to generate meaningful insights into the data but to provide a quick overview of the steps needed to use tangles on survey data. Let's quickly summarize some important aspects:\n", "\n", "- The survey data has to be converted to an internal data structure, called a `Survey`. This class provides all functionality needed to do a convenient tangle analysis\n", "- The `Survey` data structure can be set up with data created or loaded with external libraries - like, for example, `pandas` or `pyreadstat`.\n", "- Usually, the meta information provided by `pyreadstat` can not be used 'out of the box' but has to be customized after setting up the `Survey` object.\n", "- If the `Survey` object is set up correctly, the class `SurveyTangles` provides simple-to-use functions for tangle analysis and the interpretation of results.\n", "\n", "The scope of this notebook only allowed us to touch the surface of the functionality available in the *survey interface* and the tangle library in its entirety. \n", "Please consult the [documentation](../reference/index.rst) for an in-depth overview of the full functionality." ] }, { "cell_type": "code", "execution_count": null, "metadata": { "ExecuteTime": { "end_time": "2024-02-05T11:58:21.066718Z", "start_time": "2024-02-05T11:58:21.060221Z" } }, "outputs": [], "source": [] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.7" } }, "nbformat": 4, "nbformat_minor": 4 }